diff --git a/Cargo.lock b/Cargo.lock index ecfcdc92..26aad458 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2194,6 +2194,15 @@ dependencies = [ "bitcoin", ] +[[package]] +name = "lightning" +version = "0.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb0cb32c79c42444453bfabed7bd4f4ef64dfdd2e35e191fa8f3b9099ad2a186" +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.117", "lightning-invoice 0.24.0", "moksha-core", "moksha-mint", diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index addb66e6..a19a1df6 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -25,7 +25,7 @@ serde = { version = "1.0.189", features = ["derive"] } serde_derive = "1.0.171" serde_json = "1.0.107" lightning-invoice = "0.24.0" -lightning = "0.0.116" +lightning = "0.0.117" 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"] }