From: Matt Corallo <649246+TheBlueMatt@users.noreply.github.com> Date: Thu, 3 Oct 2024 17:02:55 +0000 (+0000) Subject: Merge pull request #3270 from optout21/bech32-iterser X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=bc1931bd0b07b980ab3ed7acdff3a7a769b5164c;p=rust-lightning Merge pull request #3270 from optout21/bech32-iterser Upgrade bech32 dependency (iterative) --- bc1931bd0b07b980ab3ed7acdff3a7a769b5164c diff --cc lightning/Cargo.toml index 834e064e8,e58ea74cb..719c3168d --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@@ -42,13 -40,11 +42,13 @@@ default = ["std", "grind_signatures" lightning-types = { version = "0.1.0", path = "../lightning-types", default-features = false } lightning-invoice = { version = "0.32.0", path = "../lightning-invoice", default-features = false } - bech32 = { version = "0.9.1", default-features = false } + bech32 = { version = "0.11.0", default-features = false } bitcoin = { version = "0.32.2", default-features = false, features = ["secp-recovery"] } +dnssec-prover = { version = "0.6", default-features = false } hashbrown = { version = "0.13", default-features = false } possiblyrandom = { version = "0.2", path = "../possiblyrandom", default-features = false } + regex = { version = "1.5.6", optional = true } backtrace = { version = "0.3", optional = true }