From 9822db43329f3c450bb4b0623dc2141e7e0cf02d Mon Sep 17 00:00:00 2001 From: G8XSU <3442979+G8XSU@users.noreply.github.com> Date: Mon, 14 Oct 2024 23:08:18 -0700 Subject: [PATCH] Upgrade LDK to v0.0.125 As LDK v0.0.124 was yanked. --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 95c20b5..a2dc9bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ std = ["lightning/std", "bitcoin/std", "lightning-invoice/std"] no-std = ["hashbrown", "lightning/no-std"] [dependencies] -lightning = { version = "0.0.124", default-features = false } +lightning = { version = "0.0.125", default-features = false } lightning-types = { version = "0.1", default-features = false } lightning-invoice = { version = "0.32.0", default-features = false, features = ["serde"] } bitcoin = { version = "0.32.2", default-features = false, features = ["serde"] } @@ -30,9 +30,9 @@ serde = { version = "1.0", default-features = false, features = ["derive", "allo serde_json = "1.0" [dev-dependencies] -lightning = { version = "0.0.124", default-features = false, features = ["_test_utils"] } -lightning-persister = { version = "0.0.124", default-features = false } -lightning-background-processor = { version = "0.0.124", default-features = false, features = ["std"] } +lightning = { version = "0.0.125", default-features = false, features = ["_test_utils"] } +lightning-persister = { version = "0.0.125", default-features = false } +lightning-background-processor = { version = "0.0.125", default-features = false, features = ["std"] } proptest = "1.0.0" tokio = { version = "1.35", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }