diff --git a/Cargo.lock b/Cargo.lock index 5c79ddd..4b3bd11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -391,6 +391,12 @@ version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +[[package]] +name = "hashbrown" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" + [[package]] name = "http" version = "1.4.0" @@ -603,12 +609,12 @@ checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5" [[package]] name = "indexmap" -version = "2.13.0" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" dependencies = [ "equivalent", - "hashbrown", + "hashbrown 0.17.0", ] [[package]] @@ -998,7 +1004,7 @@ dependencies = [ "error-stack 0.5.0", "error-stack 0.6.0", "eyre", - "hashbrown", + "hashbrown 0.16.1", "indexmap", "reqwest", "rootcause-internals", diff --git a/Cargo.toml b/Cargo.toml index 80c1f02..74778ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ compat-eyre06 = ["dep:eyre"] [dependencies] hashbrown = { version = "0.16.0", default-features = false } -indexmap = { version = "2.13.0", default-features = false } +indexmap = { version = "2.14.0", default-features = false } rustc-hash = { version = "2.1.1", default-features = false } triomphe = { version = "0.1.15", default-features = false } @@ -44,7 +44,7 @@ derive_more = { version = "2.1.0", default-features = false, features = [ "display", ] } eyre = { version = "0.6.12", features = ["auto-install"] } -indexmap = "2.13.0" +indexmap = "2.14.0" reqwest = "0.13.2" serde_json = "1.0.145" static_assertions = "1.1.0"