From b66c8e96093ede6b98a053471327041d43512695 Mon Sep 17 00:00:00 2001 From: Nextest Bot Date: Fri, 21 Nov 2025 04:03:54 +0000 Subject: [PATCH] fix(deps): update rust crate indexmap to 2.12.1 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index de11e92..12727c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -157,15 +157,15 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.15.2" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" [[package]] name = "indexmap" -version = "2.11.4" +version = "2.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" +checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" dependencies = [ "equivalent", "hashbrown", diff --git a/Cargo.toml b/Cargo.toml index 9fc22f5..256a110 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ path = "src/bin/generate-junit-corpus.rs" [dependencies] chrono = { version = "0.4.42", default-features = false, features = ["std"] } -indexmap = "2.11.4" +indexmap = "2.12.1" newtype-uuid = "1.2.4" proptest = { version = "1.7.0", optional = true } quick-xml = "0.38.4"