From ebff4f42f09ba75cc7cc9eaea97e53a6bc13741b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 07:18:50 +0000 Subject: [PATCH] chore(deps): bump lightning from 0.0.119 to 0.0.120 Bumps [lightning](https://github.com/lightningdevkit/rust-lightning) from 0.0.119 to 0.0.120. - [Release notes](https://github.com/lightningdevkit/rust-lightning/releases) - [Changelog](https://github.com/lightningdevkit/rust-lightning/blob/main/CHANGELOG.md) - [Commits](https://github.com/lightningdevkit/rust-lightning/compare/v0.0.119...v0.0.120) --- updated-dependencies: - dependency-name: lightning dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 +++++++++++- integrationtests/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92804abb..ac273dbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2548,6 +2548,16 @@ dependencies = [ "hex-conservative", ] +[[package]] +name = "lightning" +version = "0.0.120" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73a759c353ef7c9e3375362bcf9844fcb5ace0e8c034c4a4252d8b1e571fa3ca" +dependencies = [ + "bitcoin 0.30.2", + "hex-conservative", +] + [[package]] name = "lightning-invoice" version = "0.21.0" @@ -2812,7 +2822,7 @@ dependencies = [ "anyhow", "axum 0.7.3", "bitcoin_hashes 0.12.0", - "lightning 0.0.119", + "lightning 0.0.120", "lightning-invoice 0.27.0", "moksha-core", "moksha-mint", diff --git a/integrationtests/Cargo.toml b/integrationtests/Cargo.toml index f1f92885..21f6386c 100644 --- a/integrationtests/Cargo.toml +++ b/integrationtests/Cargo.toml @@ -25,7 +25,7 @@ serde = { version = "1.0.195", features = ["derive"] } serde_derive = "1.0.195" serde_json = "1.0.111" lightning-invoice = "0.27.0" -lightning = "0.0.119" +lightning = "0.0.120" bitcoin_hashes = { version = "0.12.0", default-features = false } secp256k1 = { version = "0.27.0", default-features = false, features = ["recovery", "alloc", "rand"] } tracing = "0.1.40"