about summary refs log tree commit diff
path: root/compiler/rustc_data_structures
diff options
context:
space:
mode:
authorpierwill <pierwill@users.noreply.github.com>2022-01-06 13:27:59 -0600
committerpierwill <pierwill@users.noreply.github.com>2022-01-22 22:34:16 -0600
commit4f89224f7f58dd941c9393cf5f85ac619ede8eb2 (patch)
tree9c18c3c71b2b5821e4d1b455551d3a974cd141f5 /compiler/rustc_data_structures
parent10c4c4afec6dfc483af6efb7019941bab9a51a29 (diff)
downloadrust-4f89224f7f58dd941c9393cf5f85ac619ede8eb2.tar.gz
rust-4f89224f7f58dd941c9393cf5f85ac619ede8eb2.zip
Use an `indexmap` to avoid sorting `LocalDefId`s
Update `indexmap` to 1.8.0.

Bless test
Diffstat (limited to 'compiler/rustc_data_structures')
-rw-r--r--compiler/rustc_data_structures/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/Cargo.toml b/compiler/rustc_data_structures/Cargo.toml
index 2bb9d6c1893..ad296c97659 100644
--- a/compiler/rustc_data_structures/Cargo.toml
+++ b/compiler/rustc_data_structures/Cargo.toml
@@ -9,7 +9,7 @@ doctest = false
 [dependencies]
 arrayvec = { version = "0.7", default-features = false }
 ena = "0.14"
-indexmap = "1.5.1"
+indexmap = { version = "1.8.0", features = ["rustc-rayon"] }
 tracing = "0.1"
 jobserver_crate = { version = "0.1.13", package = "jobserver" }
 rustc_serialize = { path = "../rustc_serialize" }