diff --git a/Cargo.lock b/Cargo.lock index 71b45f91..25360b69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1721,7 +1721,7 @@ dependencies = [ "moksha-wallet", "rand", "reqwest 0.12.4", - "secp256k1 0.27.0", + "secp256k1 0.29.0", "serde", "tempfile", "testcontainers", @@ -3132,7 +3132,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f" dependencies = [ "bitcoin_hashes 0.12.0", - "rand", "secp256k1-sys 0.8.1", "serde", ] diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index cf12d217..7132f2a3 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -20,7 +20,7 @@ anyhow = { workspace = true, features = ["backtrace"] } serde = { workspace = true, features = ["derive"] } lightning-invoice = "0.30.0" bitcoin = { version = "0.30.2", default-features = false } -secp256k1 = { version = "0.27.0", default-features = false, features = ["recovery", "alloc", "rand"] } +secp256k1 = { version = "0.29.0", default-features = false, features = ["recovery", "alloc", "rand"] } testcontainers = { workspace = true } testcontainers-modules = { workspace = true, features = ["postgres"] } bitcoincore-rpc = { workspace = true }