Skip to content

Commit 274a21f

Browse files
committed
Add bdk_electrum/transaction-sync electrum support in Cargo.toml
1 parent 2187046 commit 274a21f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lightning-persister = { version = "0.1.0" }
3636
lightning-background-processor = { version = "0.1.0", features = ["futures"] }
3737
lightning-rapid-gossip-sync = { version = "0.1.0" }
3838
lightning-block-sync = { version = "0.1.0", features = ["rpc-client", "tokio"] }
39-
lightning-transaction-sync = { version = "0.1.0", features = ["esplora-async-https", "time"] }
39+
lightning-transaction-sync = { version = "0.1.0", features = ["esplora-async-https", "time", "electrum"] }
4040
lightning-liquidity = { version = "0.1.0", features = ["std"] }
4141

4242
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch = "main", features = ["std"] }
@@ -63,6 +63,7 @@ lightning-liquidity = { version = "0.1.0", features = ["std"] }
6363

6464
bdk_chain = { version = "0.21.1", default-features = false, features = ["std"] }
6565
bdk_esplora = { version = "0.20.1", default-features = false, features = ["async-https-rustls", "tokio"]}
66+
bdk_electrum = { version = "0.20.1", default-features = false, features = ["use-rustls"]}
6667
bdk_wallet = { version = "1.0.0", default-features = false, features = ["std", "keys-bip39"]}
6768

6869
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
@@ -76,6 +77,7 @@ rand = "0.8.5"
7677
chrono = { version = "0.4", default-features = false, features = ["clock"] }
7778
tokio = { version = "1.37", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }
7879
esplora-client = { version = "0.11", default-features = false, features = ["tokio", "async-https-rustls"] }
80+
electrum-client = { version = "0.22.0", default-features = true }
7981
libc = "0.2"
8082
uniffi = { version = "0.27.3", features = ["build"], optional = true }
8183
serde = { version = "1.0.210", default-features = false, features = ["std", "derive"] }
@@ -92,7 +94,6 @@ winapi = { version = "0.3", features = ["winbase"] }
9294
lightning = { version = "0.1.0", features = ["std", "_test_utils"] }
9395
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["std", "_test_utils"] }
9496
#lightning = { path = "../rust-lightning/lightning", features = ["std", "_test_utils"] }
95-
electrum-client = { version = "0.22.0", default-features = true }
9697
proptest = "1.0.0"
9798
regex = "1.5.6"
9899

0 commit comments

Comments
 (0)