diff --git a/Cargo.lock b/Cargo.lock index 3552fb2a..2b104b81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1750,7 +1750,7 @@ dependencies = [ "moksha-wallet", "rand", "reqwest", - "secp256k1 0.27.0", + "secp256k1 0.28.2", "serde", "serde_json", "tempfile", @@ -2714,7 +2714,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 5300487e..4ac8088d 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -26,7 +26,7 @@ serde_json = "1.0.111" lightning-invoice = "0.29.0" lightning = "0.0.121" bitcoin_hashes = { version = "0.12.0", default-features = false } -secp256k1 = { version = "0.27.0", default-features = false, features = ["recovery", "alloc", "rand"] } +secp256k1 = { version = "0.28.2", default-features = false, features = ["recovery", "alloc", "rand"] } tracing = "0.1.40" testcontainers = "0.15.0" diff --git a/moksha-core/Cargo.toml b/moksha-core/Cargo.toml index 065495b0..c44ca5f6 100644 --- a/moksha-core/Cargo.toml +++ b/moksha-core/Cargo.toml @@ -16,7 +16,7 @@ url = "2.5.0" base64 = "0.21.7" bitcoin_hashes = "0.13.0" rand = "0.8.5" -secp256k1 = { version = "0.28.1", features = ["rand", "serde"] } +secp256k1 = { version = "0.28.2", features = ["rand", "serde"] } serde = { version = "1.0.196", features = ["derive"] } serde_json = "1.0.113" hex = "0.4.3" diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index 7f0d8918..e9f70a3a 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -30,7 +30,7 @@ tower-http = { version = "0.5.0", features = ["trace", "cors", "fs", "set-header tower-service = { version = "0.3.2" } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -secp256k1 = { version = "0.28.1", default-features = false, features = ["rand", "serde"] } +secp256k1 = { version = "0.28.2", default-features = false, features = ["rand", "serde"] } thiserror = "1.0.50" moksha-core = { path = "../moksha-core", version = "0.2.1" } lightning-invoice = "0.26.0" diff --git a/moksha-wallet/Cargo.toml b/moksha-wallet/Cargo.toml index 17de9398..4394b6a6 100644 --- a/moksha-wallet/Cargo.toml +++ b/moksha-wallet/Cargo.toml @@ -15,7 +15,7 @@ path = "src/lib.rs" [dependencies] anyhow = { version = "1.0.79", features = ["backtrace"] } -secp256k1 = { version = "0.28.1", default-features = false, features = ["serde"] } +secp256k1 = { version = "0.28.2", default-features = false, features = ["serde"] } moksha-core = { version = "0.2.1", path = "../moksha-core" } serde_json = "1.0.113" serde = "1.0.196"