about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorMarkus Westerlind <markus.westerlind@distilnetworks.com>2020-10-05 10:50:51 +0200
committerMarkus Westerlind <markus.westerlind@distilnetworks.com>2021-03-16 11:20:26 +0100
commit7cf8d3ac2bfb9aad4bdd229efce8f1f2e773303c (patch)
tree4a4de701bf3b3ea6f1c0ea53568a3c6cc0af0134 /library/std
parent195ad4830e11a544391abe296b146450dea8411b (diff)
downloadrust-7cf8d3ac2bfb9aad4bdd229efce8f1f2e773303c.tar.gz
rust-7cf8d3ac2bfb9aad4bdd229efce8f1f2e773303c.zip
feat: Update hashbrown to instantiate less llvm IR
Includes https://github.com/rust-lang/hashbrown/pull/204 and https://github.com/rust-lang/hashbrown/pull/205 (not yet merged) which both server to reduce the amount of IR generated for hashmaps.

Inspired by the llvm-lines data gathered in https://github.com/rust-lang/rust/pull/76680
Diffstat (limited to 'library/std')
-rw-r--r--library/std/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
index f0f5558fd16..22ca7ed09b4 100644
--- a/library/std/Cargo.toml
+++ b/library/std/Cargo.toml
@@ -20,7 +20,7 @@ libc = { version = "0.2.88", default-features = false, features = ['rustc-dep-of
 compiler_builtins = { version = "0.1.39" }
 profiler_builtins = { path = "../profiler_builtins", optional = true }
 unwind = { path = "../unwind" }
-hashbrown = { version = "0.9.0", default-features = false, features = ['rustc-dep-of-std'] }
+hashbrown = { version = "0.11", default-features = false, features = ['rustc-dep-of-std'] }
 
 # Dependencies of the `backtrace` crate
 addr2line = { version = "0.14.0", optional = true, default-features = false }