From cefa56d990dc2f61e89296259932c8c8f94b0715 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 May 2022 10:41:51 +0000 Subject: [PATCH] Update hashbrown requirement from 0.11 to 0.12 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.11.0...v0.12.1) --- updated-dependencies: - dependency-name: hashbrown dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- lightning-invoice/Cargo.toml | 2 +- lightning/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index f65d7ac8869..05c2a824eff 100644 --- a/lightning-invoice/Cargo.toml +++ b/lightning-invoice/Cargo.toml @@ -23,7 +23,7 @@ lightning = { version = "0.0.106", path = "../lightning", default-features = fal secp256k1 = { version = "0.22", default-features = false, features = ["recovery", "alloc"] } num-traits = { version = "0.2.8", default-features = false } bitcoin_hashes = { version = "0.10", default-features = false } -hashbrown = { version = "0.11", optional = true } +hashbrown = { version = "0.12", optional = true } core2 = { version = "0.3.0", default-features = false, optional = true } [dev-dependencies] diff --git a/lightning/Cargo.toml b/lightning/Cargo.toml index 5a54d042a32..7c54630f1b9 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -40,7 +40,7 @@ default = ["std", "grind_signatures"] [dependencies] bitcoin = { version = "0.28.1", default-features = false, features = ["secp-recovery"] } -hashbrown = { version = "0.11", optional = true } +hashbrown = { version = "0.12", optional = true } hex = { version = "0.4", optional = true } regex = { version = "0.2.11", optional = true } backtrace = { version = "0.3", optional = true }