From bcc8315fcc37d7fa3e0937d480cfd4b4c7dbbab8 Mon Sep 17 00:00:00 2001 From: Deadbeef Date: Wed, 12 Apr 2023 00:18:54 +0000 Subject: [PATCH] include raw feature for hashbrown in workspace hack --- src/tools/rustc-workspace-hack/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index 5cc765fd15ef1..6e9e9340fc83e 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -91,7 +91,7 @@ rand = { version = "0.8.5" } # Ensure features of `hashbrown`, `smallvec`, and `once_cell`, # which are used transitively by Cargo (via `gix`). -hashbrown = { version = "0.12.3", default-features = false, features = ["inline-more"] } +hashbrown = { version = "0.12.3", default-features = false, features = ["inline-more", "raw"] } once_cell = { version = "1.16.0", default-features = false, features = ["unstable"] } smallvec = { version = "1.10.0", features = ["write"] }