diff --git a/Cargo.lock b/Cargo.lock index 71787e68..9c9ad5aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -224,7 +224,7 @@ dependencies = [ "ddsketch-agent", "derive_more", "fnv", - "hashbrown 0.14.5", + "hashbrown", "mockito", "proptest", "protobuf", @@ -390,12 +390,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "hashbrown" -version = "0.14.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" - [[package]] name = "hashbrown" version = "0.15.2" @@ -667,7 +661,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058" dependencies = [ "equivalent", - "hashbrown 0.15.2", + "hashbrown", ] [[package]] diff --git a/crates/dogstatsd/Cargo.toml b/crates/dogstatsd/Cargo.toml index ad129a4d..c3968bac 100644 --- a/crates/dogstatsd/Cargo.toml +++ b/crates/dogstatsd/Cargo.toml @@ -11,7 +11,7 @@ bench = false datadog-protos = { version = "0.1.0", default-features = false, git = "https://github.com/DataDog/saluki/", rev = "c89b58e5784b985819baf11f13f7d35876741222" } ddsketch-agent = { version = "0.1.0", default-features = false, git = "https://github.com/DataDog/saluki/", rev = "c89b58e5784b985819baf11f13f7d35876741222" } derive_more = { version = "1.0.0", features = ["display", "into"] } -hashbrown = { version = "0.14.3", default-features = false, features = ["inline-more"] } +hashbrown = { version = "0.15.0", default-features = false, features = ["inline-more"] } protobuf = { version = "3.5.0", default-features = false } ustr = { version = "1.0.0", default-features = false } fnv = { version = "1.0.7", default-features = false }