From f3f870ffa21686e6737e2f6f695966f337f1f041 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Tue, 3 Oct 2023 09:10:37 +0000 Subject: [PATCH] Update Rust crate indexmap to v2 --- Cargo.lock | 18 +++++++++--------- guppy/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec9e0d2a0fc..f6f9e4a0f50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1504,7 +1504,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "385f4ce6ecf3692d313ca3aa9bd3b3d8490de53368d6d94bedff3af8b6d9c58d" dependencies = [ "gix-hash", - "hashbrown 0.14.0", + "hashbrown 0.14.1", "parking_lot", ] @@ -1926,7 +1926,7 @@ dependencies = [ "fixtures", "guppy-summaries", "guppy-workspace-hack", - "indexmap 1.9.3", + "indexmap 2.0.2", "itertools 0.11.0", "nested", "once_cell", @@ -2054,9 +2054,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" [[package]] name = "heck" @@ -2225,12 +2225,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.0.0" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" dependencies = [ "equivalent", - "hashbrown 0.14.0", + "hashbrown 0.14.1", ] [[package]] @@ -2764,7 +2764,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.0.0", + "indexmap 2.0.2", ] [[package]] @@ -3758,7 +3758,7 @@ version = "0.19.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" dependencies = [ - "indexmap 2.0.0", + "indexmap 2.0.2", "serde", "serde_spanned", "toml_datetime 0.6.3", diff --git a/guppy/Cargo.toml b/guppy/Cargo.toml index 8ca40796440..f949327daec 100644 --- a/guppy/Cargo.toml +++ b/guppy/Cargo.toml @@ -36,7 +36,7 @@ debug-ignore = "1.0.5" guppy-summaries = { version = "0.7.1", path = "../guppy-summaries", optional = true } fixedbitset = { version = "0.4.2", default-features = false } nested = "0.1.1" -indexmap = "1.9.3" +indexmap = "2.0.2" itertools = "0.11.0" once_cell = "1.18.0" pathdiff = { version = "0.2.1", features = ["camino"] }