From 09fb755432583591262563f0ad596c73e6714752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= Date: Fri, 21 Jan 2022 19:44:03 +0200 Subject: [PATCH] Bump hashbrown --- Cargo.lock | 12 +++++++++--- crates/hir_expand/Cargo.toml | 4 +++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22a26ba1337d..e0e5be721f90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/crates/hir_expand/Cargo.toml b/crates/hir_expand/Cargo.toml index cd1dd54163d9..e5455660d3a0 100644 --- a/crates/hir_expand/Cargo.toml +++ b/crates/hir_expand/Cargo.toml @@ -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" }