From 23d924a6b04bc7315162bb7b779da098a9111a79 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Mar 2021 07:54:07 +0000 Subject: [PATCH] Update hashbrown requirement from 0.9 to 0.11 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.11.0) 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..15eeb16 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.11" hex = "0.4" rand = "0.8" light-bitcoin-crypto = { path = "../crypto" }