From 4137ead3882107fe356494154428cb16a68c0822 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 30 Sep 2023 03:19:22 +0000 Subject: [PATCH] Update Rust crate indexmap to 2.0.2 --- Cargo.lock | 22 +++++++++++----------- nextest-runner/Cargo.toml | 2 +- quick-junit/Cargo.toml | 2 +- workspace-hack/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ba832d00b6..639b57ef152 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -954,9 +954,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 = "hdrhistogram" @@ -1172,12 +1172,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", "serde", ] @@ -1548,7 +1548,7 @@ dependencies = [ "http", "humantime-serde", "indent_write", - "indexmap 2.0.0", + "indexmap 2.0.2", "indicatif", "indoc", "is_ci", @@ -1615,7 +1615,7 @@ dependencies = [ "futures-sink", "futures-util", "indexmap 1.9.3", - "indexmap 2.0.0", + "indexmap 2.0.2", "libc", "log", "memchr", @@ -1819,7 +1819,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.0.0", + "indexmap 2.0.2", ] [[package]] @@ -1999,7 +1999,7 @@ version = "0.3.3" dependencies = [ "chrono", "goldenfile", - "indexmap 2.0.0", + "indexmap 2.0.2", "nextest-workspace-hack", "owo-colors", "quick-xml 0.30.0", @@ -2420,7 +2420,7 @@ version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" dependencies = [ - "indexmap 2.0.0", + "indexmap 2.0.2", "itoa", "ryu", "serde", @@ -2978,7 +2978,7 @@ version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.0.0", + "indexmap 2.0.2", "serde", "serde_spanned", "toml_datetime", diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index 70b7a7a804c..ba08e461ab3 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -94,7 +94,7 @@ nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } console-subscriber = { version = "0.1.10", optional = true } unicode-ident = "1.0.12" unicode-normalization = "0.1.22" -indexmap = { version = "2.0.0", features = ["serde"] } +indexmap = { version = "2.0.2", features = ["serde"] } smallvec = "1.11.1" [target.'cfg(unix)'.dependencies] diff --git a/quick-junit/Cargo.toml b/quick-junit/Cargo.toml index 59382c7437c..ed8a0acd044 100644 --- a/quick-junit/Cargo.toml +++ b/quick-junit/Cargo.toml @@ -13,7 +13,7 @@ rust-version = "1.66" [dependencies] chrono = "0.4.31" -indexmap = "2.0.0" +indexmap = "2.0.2" quick-xml = "0.30.0" thiserror = "1.0.48" uuid = "1.4.1" diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 1039b8734fd..1d42571f331 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -22,7 +22,7 @@ either = { version = "1.9.0" } futures-channel = { version = "0.3.28", features = ["sink"] } futures-sink = { version = "0.3.28", default-features = false, features = ["std"] } indexmap-dff4ba8e3ae991db = { package = "indexmap", version = "1.9.3", default-features = false, features = ["serde-1"] } -indexmap-f595c2ba2a3f28df = { package = "indexmap", version = "2.0.0", features = ["serde"] } +indexmap-f595c2ba2a3f28df = { package = "indexmap", version = "2.0.2", features = ["serde"] } log = { version = "0.4.20", default-features = false, features = ["std"] } memchr = { version = "2.6.3", features = ["use_std"] } miette = { version = "5.10.0", features = ["fancy"] }