diff --git a/Cargo.lock b/Cargo.lock index e262dc76..7907317a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2409,6 +2409,15 @@ dependencies = [ "bitcoin", ] +[[package]] +name = "lightning" +version = "0.0.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52cec5fa9382154fe9671e8df93095b800c7d77abc66e2a5ef839d672521c5e" +dependencies = [ + "bitcoin", +] + [[package]] name = "lightning-invoice" version = "0.21.0" @@ -2437,6 +2446,20 @@ dependencies = [ "secp256k1 0.24.3", ] +[[package]] +name = "lightning-invoice" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3eb24878b0f4ef75f020976c886d9ad1503867802329cc963e0ab4623ea3b25c" +dependencies = [ + "bech32", + "bitcoin", + "bitcoin_hashes 0.11.0", + "lightning 0.0.118", + "num-traits", + "secp256k1 0.24.3", +] + [[package]] name = "linux-raw-sys" version = "0.4.11" @@ -2694,7 +2717,7 @@ dependencies = [ "hex", "http-body-util", "hyper 0.14.27", - "lightning-invoice 0.24.0", + "lightning-invoice 0.26.0", "mockall", "moksha-core", "reqwest", @@ -2723,7 +2746,7 @@ dependencies = [ "async-trait", "dirs", "gloo-net 0.4.0", - "lightning-invoice 0.24.0", + "lightning-invoice 0.26.0", "moksha-core", "rand", "reqwest", diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index a9b29667..417e9b81 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -37,7 +37,7 @@ secp256k1 = { version = "0.28.0", features = ["rand", "serde"] } thiserror = "1.0.50" moksha-core = { path = "../moksha-core", version = "0.1.2" } rocksdb = "0.21.0" -lightning-invoice = "0.24.0" +lightning-invoice = "0.26.0" reqwest = { version = "0.11.22", default-features = false, features = ["serde_json", "json", "rustls-tls", "socks"] } url = "2.4.1" dotenvy = "0.15.7" diff --git a/moksha-wallet/Cargo.toml b/moksha-wallet/Cargo.toml index e9cf5f6f..62c04a27 100644 --- a/moksha-wallet/Cargo.toml +++ b/moksha-wallet/Cargo.toml @@ -22,7 +22,7 @@ serde = "1.0.193" rand = "0.8.5" thiserror = "1.0.50" async-trait = "0.1.74" -lightning-invoice = "0.24.0" +lightning-invoice = "0.26.0" url = "2.4.1" dirs = "5.0.1"