From 6f9b4f8b8872aae8350b6ca9bc4bcee0199fd1df Mon Sep 17 00:00:00 2001 From: Jeeyong Um Date: Sun, 19 Jan 2025 00:46:05 +0900 Subject: [PATCH] chore: bump hashbrown to 0.15 (#333) --- borsh/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/borsh/Cargo.toml b/borsh/Cargo.toml index b1f3cb211..b68148c28 100644 --- a/borsh/Cargo.toml +++ b/borsh/Cargo.toml @@ -36,8 +36,8 @@ borsh-derive = { path = "../borsh-derive", version = "~1.5.4", optional = true } # hashbrown can be used in no-std context. # NOTE: There is no reason to restrict use of older versions, but we don't want to get -# sudden breaking changes with an open range of versions, so we limit the range by not yet released 0.15.0 version: -hashbrown = { version = ">=0.11,<0.15.0", optional = true } +# sudden breaking changes with an open range of versions, so we limit the range by not yet released 0.16.0 version: +hashbrown = { version = ">=0.11,<0.16.0", optional = true } bytes = { version = "1", optional = true } bson = { version = "2", optional = true }