From 17171ece180d6512f21dd98cdc8637e33646d994 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:54:33 -0600 Subject: [PATCH] build(deps): update hashbrown requirement from 0.14 to 0.15 (#2341) 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/compare/v0.14.0...v0.15.0) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- quic/s2n-quic-transport/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quic/s2n-quic-transport/Cargo.toml b/quic/s2n-quic-transport/Cargo.toml index cbec20ff4..df96f1eec 100644 --- a/quic/s2n-quic-transport/Cargo.toml +++ b/quic/s2n-quic-transport/Cargo.toml @@ -20,7 +20,7 @@ unstable-provider-dc = [] bytes = { version = "1", default-features = false } futures-channel = { version = "0.3", default-features = false, features = ["alloc"] } futures-core = { version = "0.3", default-features = false, features = ["alloc"] } -hashbrown = "0.14" +hashbrown = "0.15" intrusive-collections = "0.9" once_cell = "1" s2n-codec = { version = "=0.47.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }