about summary refs log tree commit diff
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
commit2c26139bbcff3afef42e746f9c8fb61d7daae9b4 (patch)
tree08104273a5f7b9ce940119dc82bafbf492d34d7f
parent513d72d007619cef8fc60565b1bde7924362a442 (diff)
downloadrust-2c26139bbcff3afef42e746f9c8fb61d7daae9b4.tar.gz
rust-2c26139bbcff3afef42e746f9c8fb61d7daae9b4.zip
Use an `indexmap` to avoid sorting `LocalDefId`s
Update `indexmap` to 1.8.0.

Bless test
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 65e142a00f8..faed52727c8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -172,9 +172,9 @@ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
 
 [[package]]
 name = "indexmap"
-version = "1.7.0"
+version = "1.8.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
+checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
 dependencies = [
  "autocfg",
  "hashbrown",
diff --git a/Cargo.toml b/Cargo.toml
index 3be4250296e..2d19040b509 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,7 @@ gimli = { version = "0.25.0", default-features = false, features = ["write"]}
 object = { version = "0.27.0", default-features = false, features = ["std", "read_core", "write", "archive", "coff", "elf", "macho", "pe"] }
 
 ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "do_not_remove_cg_clif_ranlib" }
-indexmap = "1.0.2"
+indexmap = "1.8.0"
 libloading = { version = "0.6.0", optional = true }
 smallvec = "1.6.1"