diff --git a/Cargo.lock b/Cargo.lock index 962029b1..ffa3d351 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2194,6 +2194,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" @@ -2439,7 +2448,7 @@ dependencies = [ "axum", "bitcoin_hashes 0.11.0", "hyper", - "lightning 0.0.116", + "lightning 0.0.118", "lightning-invoice 0.24.0", "moksha-core", "moksha-mint", diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index e7079584..a810cb00 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -25,7 +25,7 @@ serde = { version = "1.0.190", features = ["derive"] } serde_derive = "1.0.171" serde_json = "1.0.107" lightning-invoice = "0.24.0" -lightning = "0.0.116" +lightning = "0.0.118" hyper = { version = "0.14", features = ["full"] } bitcoin_hashes = { version = "0.11.0", default-features = false } secp256k1 = { version = "0.24.0", default-features = false, features = ["recovery", "alloc", "rand"] }