Skip to content

Commit

Permalink
update other deps as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ranile committed May 30, 2023
1 parent a028357 commit 42afb9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ serde_json = "1.0.91"
siphasher = "0.3.10"
strsim = "0.10.0"
clap = { version = "4.2.5", features = ["derive"] }
toml = "0.5.11"
toml = "0.7.3"
ureq = { version = "2.6.2", features = ["json"] }
walkdir = "2.3.2"
which = "4.4.0"

[dev-dependencies]
assert_cmd = "2.0.8"
lazy_static = "1.4.0"
predicates = "2.1.5"
serial_test = "1.0.0"
predicates = "3.0.3"
serial_test = "2.0.0"
tempfile = "3.3.0"
reqwest = { version = "0.11.14", features = ["blocking"] }

2 changes: 1 addition & 1 deletion src/manifest/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ impl CrateData {
pub fn parse_crate_data(manifest_path: &Path) -> Result<ManifestAndUnsedKeys> {
let manifest = fs::read_to_string(&manifest_path)
.with_context(|| anyhow!("failed to read: {}", manifest_path.display()))?;
let manifest = &mut toml::Deserializer::new(&manifest);
let manifest = toml::Deserializer::new(&manifest);

let mut unused_keys = BTreeSet::new();
let levenshtein_threshold = 1;
Expand Down

0 comments on commit 42afb9c

Please sign in to comment.