diff --git a/Cargo.lock b/Cargo.lock index 54a060f9..b3a6ead5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2040,7 +2040,7 @@ dependencies = [ "opentelemetry_sdk", "pretty_assertions", "reqwest 0.12.3", - "secp256k1 0.28.2", + "secp256k1 0.29.0", "serde", "serde_json", "sqlx", @@ -3781,9 +3781,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.35" +version = "0.3.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef89ece63debf11bc32d1ed8d078ac870cbeb44da02afb02a9ff135ae7ca0582" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" dependencies = [ "deranged", "itoa", diff --git a/Cargo.toml b/Cargo.toml index a9a6f362..a98f1c97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -112,6 +112,7 @@ url = "2.5.0" utoipa = "4.2.0" utoipa-swagger-ui = "6.0.0" uuid = "1.7.0" +secp256k1 = "0.29.0" [profile.dev.package] secp256k1 = { opt-level = 3 } diff --git a/moksha-core/Cargo.toml b/moksha-core/Cargo.toml index cfe95073..dbf59bfc 100644 --- a/moksha-core/Cargo.toml +++ b/moksha-core/Cargo.toml @@ -15,7 +15,7 @@ anyhow = { workspace = true } url = { workspace = true } base64 = { workspace = true } bitcoin_hashes = "0.14.0" -secp256k1 = { version = "0.29.0", features = ["rand", "serde"] } +secp256k1 = { workspace = true, features = ["rand", "serde"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } hex = { workspace = true } diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index 23198d43..2077287d 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -27,7 +27,7 @@ serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } tokio = { workspace = true, features = ["full"] } tower-http = { workspace = true, features = ["cors", "fs", "set-header"] } -secp256k1 = { version = "0.28.2", default-features = false, features = ["rand", "serde"] } +secp256k1 = { workspace = true, default-features = false, features = ["rand", "serde"] } thiserror = { workspace = true } moksha-core = { path = "../moksha-core", version = "0.2.1" } lightning-invoice = "0.30.0"