about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLaurențiu Nicola <lnicola@dend.ro>2022-07-03 10:02:15 +0300
committerLaurențiu Nicola <lnicola@dend.ro>2022-07-03 10:09:35 +0300
commit6669f388a2d367f70c7ec5b0ba0fd8ec14bb2628 (patch)
tree9cdb9b894b6f26af782195c05ee912227b11e090
parentb24ece5220c7c9b111d2cdf1b728175b2de3f181 (diff)
downloadrust-6669f388a2d367f70c7ec5b0ba0fd8ec14bb2628.tar.gz
rust-6669f388a2d367f70c7ec5b0ba0fd8ec14bb2628.zip
Bump indexmap
-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 be0a684c9b9..41e8723d2b5 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 84cd35c2887..35a18e4bebf 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 8eb1236da07..e3ed054a0e1 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 66c9333e192..dbecfdd2185 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 38222476b5c..c6377348784 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"