Skip to content

Commit 26d50a3

Browse files
committed
f Fix build, pin BDK, switch to LDK main
1 parent 39d33f1 commit 26d50a3

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

Cargo.toml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ description = "A ready-to-go node implementation built using LDK."
1717
#lightning-rapid-gossip-sync = { version = "0.0.114" }
1818
#lightning-transaction-sync = { version = "0.0.114", features = ["esplora-async"] }
1919

20-
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["max_level_trace", "std"] }
21-
#lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
22-
#lightning-net-tokio = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
23-
#lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
24-
#lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
25-
#lightning-rapid-gossip-sync = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
26-
#lightning-transaction-sync = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["esplora-async"] }
20+
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["max_level_trace", "std"] }
21+
lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
22+
lightning-net-tokio = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
23+
lightning-persister = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
24+
lightning-background-processor = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
25+
lightning-rapid-gossip-sync = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
26+
lightning-transaction-sync = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["esplora-async"] }
2727

28-
lightning = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common", features = ["max_level_trace", "std"] }
29-
lightning-invoice = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
30-
lightning-net-tokio = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
31-
lightning-persister = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
32-
lightning-background-processor = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
33-
lightning-rapid-gossip-sync = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
34-
lightning-transaction-sync = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common", features = ["esplora-async"] }
28+
#lightning = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common", features = ["max_level_trace", "std"] }
29+
#lightning-invoice = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
30+
#lightning-net-tokio = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
31+
#lightning-persister = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
32+
#lightning-background-processor = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
33+
#lightning-rapid-gossip-sync = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common" }
34+
#lightning-transaction-sync = { git = "https://github.com/tnull/rust-lightning", branch="2023-03-expose-impl-writeable-tlv-based-enum-common", features = ["esplora-async"] }
3535

3636
#lightning = { path = "../rust-lightning/lightning", features = ["max_level_trace", "std"] }
3737
#lightning-invoice = { path = "../rust-lightning/lightning-invoice" }
@@ -41,7 +41,7 @@ lightning-transaction-sync = { git = "https://github.com/tnull/rust-lightning",
4141
#lightning-rapid-gossip-sync = { path = "../rust-lightning/lightning-rapid-gossip-sync" }
4242
#lightning-transaction-sync = { path = "../rust-lightning/lightning-transaction-sync", features = ["esplora-async"] }
4343

44-
bdk = { version = "0.27.1", default-features = false, features = ["async-interface", "use-esplora-async", "sqlite-bundled"]}
44+
bdk = { version = "=0.27.1", default-features = false, features = ["async-interface", "use-esplora-async", "sqlite-bundled"]}
4545
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
4646
rusqlite = { version = "0.28.0", features = ["bundled"] }
4747
bitcoin = "0.29.2"
@@ -51,6 +51,7 @@ chrono = "0.4"
5151
futures = "0.3"
5252
serde_json = { version = "1.0" }
5353
tokio = { version = "1", default-features = false, features = [ "rt-multi-thread", "time", "sync" ] }
54+
esplora-client = { version = "=0.3", default-features = false }
5455

5556
[dev-dependencies]
5657
electrsd = { version = "0.22.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_23_0"] }

0 commit comments

Comments
 (0)