update other deps as well

master
Muhammad Hamza 2 years ago
parent 73e059f754
commit 0dbe045fe7
No known key found for this signature in database
GPG Key ID: B7812BE5DBACA4E0
  1. 6
      Cargo.toml
  2. 2
      src/manifest/mod.rs

@ -31,7 +31,7 @@ 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"
@ -39,7 +39,7 @@ 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"

@ -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;

Loading…
Cancel
Save