diff --git a/Cargo.lock b/Cargo.lock index 8049ddb43..8e1126df6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -702,6 +702,12 @@ dependencies = [ "ahash", ] +[[package]] +name = "hashbrown" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" + [[package]] name = "hermit-abi" version = "0.1.18" @@ -735,12 +741,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.6.2" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3" +checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5" dependencies = [ "autocfg", - "hashbrown", + "hashbrown 0.11.2", "serde", ] @@ -1160,7 +1166,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c672c7ad9ec066e428c00eb917124a06f08db19e2584de982cc34b1f4c12485" dependencies = [ "dlv-list", - "hashbrown", + "hashbrown 0.9.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 1d150115a..1a2ad5e66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ term_size = "0.3.2" quick-xml = "0.22.0" rand = "0.8.4" serde = { version = "1.0.126", features = ["derive"] } -indexmap = { version ="1.6.2", features = ["serde"] } +indexmap = { version ="1.7.0", features = ["serde"] } notify-rust = { version = "4.5.1", optional = true } semver = "1.0.3" which = "4.1.0"