Skip to content

Commit ad56c24

Browse files
committed
WIP: Upgrade LDK dependency
1 parent a9bb2e9 commit ad56c24

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

Cargo.toml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ panic = 'abort' # Abort on panic
3232
default = []
3333

3434
[dependencies]
35-
lightning = { version = "0.0.116", features = ["max_level_trace", "std"] }
36-
lightning-invoice = { version = "0.24.0" }
37-
lightning-net-tokio = { version = "0.0.116" }
38-
lightning-persister = { version = "0.0.116" }
39-
lightning-background-processor = { version = "0.0.116", features = ["futures"] }
40-
lightning-rapid-gossip-sync = { version = "0.0.116" }
41-
lightning-transaction-sync = { version = "0.0.116", features = ["esplora-async-https"] }
35+
#lightning = { version = "0.0.116", features = ["max_level_trace", "std"] }
36+
#lightning-invoice = { version = "0.24.0" }
37+
#lightning-net-tokio = { version = "0.0.116" }
38+
#lightning-persister = { version = "0.0.116" }
39+
#lightning-background-processor = { version = "0.0.116", features = ["futures"] }
40+
#lightning-rapid-gossip-sync = { version = "0.0.116" }
41+
#lightning-transaction-sync = { version = "0.0.116", features = ["esplora-async-https"] }
4242

4343
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["max_level_trace", "std"] }
4444
#lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
@@ -56,7 +56,16 @@ lightning-transaction-sync = { version = "0.0.116", features = ["esplora-async-h
5656
#lightning-rapid-gossip-sync = { path = "../rust-lightning/lightning-rapid-gossip-sync" }
5757
#lightning-transaction-sync = { path = "../rust-lightning/lightning-transaction-sync", features = ["esplora-async"] }
5858

59+
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "d4ad826c6eb85ea91ec7aa2cd4545fa2139a4462", features = ["max_level_trace", "std"] }
60+
lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "d4ad826c6eb85ea91ec7aa2cd4545fa2139a4462" }
61+
lightning-net-tokio = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "d4ad826c6eb85ea91ec7aa2cd4545fa2139a4462" }
62+
lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "d4ad826c6eb85ea91ec7aa2cd4545fa2139a4462" }
63+
lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "d4ad826c6eb85ea91ec7aa2cd4545fa2139a4462", features = ["futures"] }
64+
lightning-rapid-gossip-sync = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "d4ad826c6eb85ea91ec7aa2cd4545fa2139a4462" }
65+
lightning-transaction-sync = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "d4ad826c6eb85ea91ec7aa2cd4545fa2139a4462", features = ["esplora-async"] }
66+
5967
bdk = { version = "0.28.0", default-features = false, features = ["std", "async-interface", "use-esplora-async", "sqlite-bundled", "keys-bip39"]}
68+
6069
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
6170
rusqlite = { version = "0.28.0", features = ["bundled"] }
6271
bitcoin = "0.29.2"

0 commit comments

Comments
 (0)