diff --git a/Cargo.lock b/Cargo.lock index 5c79ddd..5066fed 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" @@ -608,7 +614,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ "equivalent", - "hashbrown", + "hashbrown 0.16.1", ] [[package]] @@ -998,7 +1004,7 @@ dependencies = [ "error-stack 0.5.0", "error-stack 0.6.0", "eyre", - "hashbrown", + "hashbrown 0.17.0", "indexmap", "reqwest", "rootcause-internals", diff --git a/Cargo.toml b/Cargo.toml index 80c1f02..5e522a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ compat-error-stack06 = ["dep:error-stack"] compat-eyre06 = ["dep:eyre"] [dependencies] -hashbrown = { version = "0.16.0", default-features = false } +hashbrown = { version = "0.17.0", default-features = false } indexmap = { version = "2.13.0", default-features = false } rustc-hash = { version = "2.1.1", default-features = false } triomphe = { version = "0.1.15", default-features = false }