Bump indexmap

This commit is contained in:
Laurențiu Nicola 2022-07-03 10:02:15 +03:00
parent b24ece5220
commit 6669f388a2
5 changed files with 11 additions and 17 deletions

20
Cargo.lock generated
View File

@ -299,7 +299,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f" checksum = "3495912c9c1ccf2e18976439f4443f3fee0fd61f424ff99fde6a66b15ecb448f"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"hashbrown 0.12.1", "hashbrown",
"lock_api", "lock_api",
"parking_lot_core 0.9.3", "parking_lot_core 0.9.3",
] ]
@ -438,12 +438,6 @@ version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4" checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
[[package]] [[package]]
name = "hashbrown" name = "hashbrown"
version = "0.12.1" version = "0.12.1"
@ -504,7 +498,7 @@ dependencies = [
"either", "either",
"expect-test", "expect-test",
"fst", "fst",
"hashbrown 0.12.1", "hashbrown",
"hir-expand", "hir-expand",
"indexmap", "indexmap",
"itertools", "itertools",
@ -531,7 +525,7 @@ dependencies = [
"cov-mark", "cov-mark",
"either", "either",
"expect-test", "expect-test",
"hashbrown 0.12.1", "hashbrown",
"itertools", "itertools",
"la-arena", "la-arena",
"limit", "limit",
@ -726,12 +720,12 @@ dependencies = [
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "1.8.2" version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a" checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"hashbrown 0.11.2", "hashbrown",
] ]
[[package]] [[package]]
@ -1319,7 +1313,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce1f383129e417a6265b16ed78e6e9307748f0863b2ba75f78ff14717db5b017" checksum = "ce1f383129e417a6265b16ed78e6e9307748f0863b2ba75f78ff14717db5b017"
dependencies = [ dependencies = [
"countme", "countme",
"hashbrown 0.12.1", "hashbrown",
"memoffset", "memoffset",
"rustc-hash", "rustc-hash",
"text-size", "text-size",

View File

@ -20,7 +20,7 @@ drop_bomb = "0.1.5"
either = "1.7.0" either = "1.7.0"
fst = { version = "0.4.7", default-features = false } fst = { version = "0.4.7", default-features = false }
hashbrown = { version = "0.12.1", default-features = false } hashbrown = { version = "0.12.1", default-features = false }
indexmap = "1.8.2" indexmap = "1.9.1"
itertools = "0.10.3" itertools = "0.10.3"
la-arena = { version = "0.3.0", path = "../../lib/la-arena" } la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
once_cell = "1.12.0" once_cell = "1.12.0"

View File

@ -19,7 +19,7 @@ once_cell = "1.12.0"
either = "1.7.0" either = "1.7.0"
itertools = "0.10.3" itertools = "0.10.3"
arrayvec = "0.7.2" arrayvec = "0.7.2"
indexmap = "1.8.2" indexmap = "1.9.1"
stdx = { path = "../stdx", version = "0.0.0" } stdx = { path = "../stdx", version = "0.0.0" }
parser = { path = "../parser", version = "0.0.0" } parser = { path = "../parser", version = "0.0.0" }

View File

@ -17,7 +17,7 @@ rowan = "0.15.5"
rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" } rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
once_cell = "1.12.0" once_cell = "1.12.0"
indexmap = "1.8.2" indexmap = "1.9.1"
smol_str = "0.1.23" smol_str = "0.1.23"
stdx = { path = "../stdx", version = "0.0.0" } stdx = { path = "../stdx", version = "0.0.0" }

View File

@ -14,4 +14,4 @@ rustc-hash = "1.1.0"
fst = "0.4.7" fst = "0.4.7"
paths = { path = "../paths", version = "0.0.0" } paths = { path = "../paths", version = "0.0.0" }
indexmap = "1.8.2" indexmap = "1.9.1"