From 7d7d2a5f39788951f334000f8ced02f30b5b1ab9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 03:21:48 +0000 Subject: [PATCH] build(deps): update hashbrown requirement from 0.14.5 to 0.15.2 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/commits) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- skunk-util/Cargo.toml | 2 +- skunk/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skunk-util/Cargo.toml b/skunk-util/Cargo.toml index 68848fe..b65f312 100644 --- a/skunk-util/Cargo.toml +++ b/skunk-util/Cargo.toml @@ -11,6 +11,6 @@ error = [] [dependencies] ahash = { version = "0.8.11", optional = true } -hashbrown = { version = "0.14.5", optional = true } +hashbrown = { version = "0.15.2", optional = true } tokio = { version = "1.37.0", default-features = false, features = ["sync"], optional = true } tracing = "0.1.40" diff --git a/skunk/Cargo.toml b/skunk/Cargo.toml index 6d88c17..cd25ed0 100644 --- a/skunk/Cargo.toml +++ b/skunk/Cargo.toml @@ -55,7 +55,7 @@ bitflags = "2.5.0" bytes = "1.6.0" crc = "3.2.1" futures = "0.3.30" -hashbrown = "0.14.5" +hashbrown = "0.15.2" http-body-util = { version = "0.1.1", optional = true } hyper = { version = "1.4.0", features = ["http1", "server", "client"], optional = true } hyper-util = { version = "0.1.3", features = ["tokio"], optional = true }