From f35b9e2c4eb69f54bd1b8c7c29405b6847f7a001 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Nov 2022 08:02:27 +0000 Subject: [PATCH] Update hashbrown requirement from 0.9 to 0.13 Updates the requirements on [hashbrown](https://github.com/rust-lang/hashbrown) to permit the latest version. - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.9.0...v0.13.1) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- merkle/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/merkle/Cargo.toml b/merkle/Cargo.toml index 932b1d0..0653040 100644 --- a/merkle/Cargo.toml +++ b/merkle/Cargo.toml @@ -23,7 +23,7 @@ light-bitcoin-primitives = { path = "../primitives", default-features = false } light-bitcoin-serialization = { path = "../serialization", default-features = false, features = ["derive"] } [dev-dependencies] -hashbrown = "0.9" +hashbrown = "0.13" hex = "0.4" rand = "0.8" light-bitcoin-crypto = { path = "../crypto" }