diff --git a/lightning-invoice/Cargo.toml b/lightning-invoice/Cargo.toml index 194f5f70e91..4b15df1a5cf 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.20", 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 a9df766731b..e1caf8f424c 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -42,7 +42,7 @@ bitcoin = { version = "0.27", default-features = false, features = ["secp-recove # TODO remove this once rust-bitcoin PR #637 is released secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] } -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 }