about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2020-08-07 17:03:47 -0700
committerJosh Stone <jistone@redhat.com>2020-08-09 12:25:21 -0700
commit997a766b320e845fa8833c5dfe7d9a29c6970ccf (patch)
treec6047ed9d5fccd691643aa91e3fb8b830819bccc
parent543f03d24118d3af784aa98c507c00e30c796a0e (diff)
downloadrust-997a766b320e845fa8833c5dfe7d9a29c6970ccf.tar.gz
rust-997a766b320e845fa8833c5dfe7d9a29c6970ccf.zip
Upgrade indexmap to 1.5.1, now using hashbrown!
-rw-r--r--Cargo.lock8
-rw-r--r--src/librustc_data_structures/Cargo.toml2
2 files changed, 7 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 57e7079dfb2..2685de2244e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1382,9 +1382,13 @@ dependencies = [
 
 [[package]]
 name = "indexmap"
-version = "1.0.2"
+version = "1.5.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
+checksum = "86b45e59b16c76b11bf9738fd5d38879d3bd28ad292d7b313608becb17ae2df9"
+dependencies = [
+ "autocfg",
+ "hashbrown",
+]
 
 [[package]]
 name = "installer"
diff --git a/src/librustc_data_structures/Cargo.toml b/src/librustc_data_structures/Cargo.toml
index 811d1e49626..d0dbad5d2af 100644
--- a/src/librustc_data_structures/Cargo.toml
+++ b/src/librustc_data_structures/Cargo.toml
@@ -11,7 +11,7 @@ doctest = false
 
 [dependencies]
 ena = "0.14"
-indexmap = "1"
+indexmap = "1.5.1"
 log = { package = "tracing", version = "0.1" }
 jobserver_crate = { version = "0.1.13", package = "jobserver" }
 lazy_static = "1"