Unnamed repository; edit this file 'description' to name the repository.
Bump indexmap
Laurențiu Nicola 2022-07-03
parent b24ece5 · commit 6669f38
-rw-r--r--Cargo.lock20
-rw-r--r--crates/hir-def/Cargo.toml2
-rw-r--r--crates/ide-db/Cargo.toml2
-rw-r--r--crates/syntax/Cargo.toml2
-rw-r--r--crates/vfs/Cargo.toml2
5 files changed, 11 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock
index be0a684c9b..41e8723d2b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -299,7 +299,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f"
dependencies = [
"cfg-if",
- "hashbrown 0.12.1",
+ "hashbrown",
"lock_api",
"parking_lot_core 0.9.3",
]
@@ -440,12 +440,6 @@ checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
[[package]]
name = "hashbrown"
-version = "0.11.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
-
-[[package]]
-name = "hashbrown"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
@@ -504,7 +498,7 @@ dependencies = [
"either",
"expect-test",
"fst",
- "hashbrown 0.12.1",
+ "hashbrown",
"hir-expand",
"indexmap",
"itertools",
@@ -531,7 +525,7 @@ dependencies = [
"cov-mark",
"either",
"expect-test",
- "hashbrown 0.12.1",
+ "hashbrown",
"itertools",
"la-arena",
"limit",
@@ -726,12 +720,12 @@ dependencies = [
[[package]]
name = "indexmap"
-version = "1.8.2"
+version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a"
+checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [
"autocfg",
- "hashbrown 0.11.2",
+ "hashbrown",
]
[[package]]
@@ -1319,7 +1313,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce1f383129e417a6265b16ed78e6e9307748f0863b2ba75f78ff14717db5b017"
dependencies = [
"countme",
- "hashbrown 0.12.1",
+ "hashbrown",
"memoffset",
"rustc-hash",
"text-size",
diff --git a/crates/hir-def/Cargo.toml b/crates/hir-def/Cargo.toml
index 84cd35c288..35a18e4beb 100644
--- a/crates/hir-def/Cargo.toml
+++ b/crates/hir-def/Cargo.toml
@@ -20,7 +20,7 @@ drop_bomb = "0.1.5"
either = "1.7.0"
fst = { version = "0.4.7", default-features = false }
hashbrown = { version = "0.12.1", default-features = false }
-indexmap = "1.8.2"
+indexmap = "1.9.1"
itertools = "0.10.3"
la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
once_cell = "1.12.0"
diff --git a/crates/ide-db/Cargo.toml b/crates/ide-db/Cargo.toml
index 8eb1236da0..e3ed054a0e 100644
--- a/crates/ide-db/Cargo.toml
+++ b/crates/ide-db/Cargo.toml
@@ -19,7 +19,7 @@ once_cell = "1.12.0"
either = "1.7.0"
itertools = "0.10.3"
arrayvec = "0.7.2"
-indexmap = "1.8.2"
+indexmap = "1.9.1"
stdx = { path = "../stdx", version = "0.0.0" }
parser = { path = "../parser", version = "0.0.0" }
diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml
index 66c9333e19..dbecfdd218 100644
--- a/crates/syntax/Cargo.toml
+++ b/crates/syntax/Cargo.toml
@@ -17,7 +17,7 @@ rowan = "0.15.5"
rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
rustc-hash = "1.1.0"
once_cell = "1.12.0"
-indexmap = "1.8.2"
+indexmap = "1.9.1"
smol_str = "0.1.23"
stdx = { path = "../stdx", version = "0.0.0" }
diff --git a/crates/vfs/Cargo.toml b/crates/vfs/Cargo.toml
index 38222476b5..c637734878 100644
--- a/crates/vfs/Cargo.toml
+++ b/crates/vfs/Cargo.toml
@@ -14,4 +14,4 @@ rustc-hash = "1.1.0"
fst = "0.4.7"
paths = { path = "../paths", version = "0.0.0" }
-indexmap = "1.8.2"
+indexmap = "1.9.1"