diff --git a/Cargo.lock b/Cargo.lock index d2f3f563..d9a8c498 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1754,7 +1754,7 @@ dependencies = [ "moksha-wallet", "rand", "reqwest", - "secp256k1 0.27.0", + "secp256k1 0.28.2", "serde", "tempfile", "testcontainers", @@ -2803,7 +2803,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 8966b3c4..32ef3afc 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -25,7 +25,7 @@ serde = { version = "1.0.195", features = ["derive"] } 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 0aad61ed..d7bb343f 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -28,7 +28,7 @@ serde_json = "1.0.108" tokio = { version = "1.36.0", features = ["full"] } tower-http = { version = "0.5.0", features = ["cors", "fs", "set-header"] } -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"