Bump hashbrown

This commit is contained in:
Laurențiu Nicola 2022-01-21 19:44:03 +02:00
parent 485f318b70
commit 09fb755432
2 changed files with 12 additions and 4 deletions

12
Cargo.lock generated
View file

@ -453,6 +453,12 @@ version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
[[package]]
name = "hashbrown"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758"
[[package]]
name = "heck"
version = "0.3.3"
@ -532,7 +538,7 @@ dependencies = [
"cfg",
"cov-mark",
"either",
"hashbrown",
"hashbrown 0.12.0",
"itertools",
"la-arena",
"limit",
@ -736,7 +742,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
dependencies = [
"autocfg",
"hashbrown",
"hashbrown 0.11.2",
]
[[package]]
@ -1331,7 +1337,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71ea8fec43656b71f8bf4a0351ab18604488ee13b0bf72cad2965f5bb2ca9dc6"
dependencies = [
"countme",
"hashbrown",
"hashbrown 0.11.2",
"memoffset",
"rustc-hash",
"text-size",

View file

@ -16,7 +16,9 @@ either = "1.5.3"
rustc-hash = "1.0.0"
la-arena = { version = "0.3.0", path = "../../lib/arena" }
itertools = "0.10.0"
hashbrown = { version = "0.11", features = ["inline-more"], default-features = false }
hashbrown = { version = "0.12", features = [
"inline-more",
], default-features = false }
base_db = { path = "../base_db", version = "0.0.0" }
cfg = { path = "../cfg", version = "0.0.0" }