2 name = "lightning-transaction-sync"
3 version = "0.0.123-beta"
4 authors = ["Elias Rohrer"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning"
8 Utilities for syncing LDK via the transaction-based `Confirm` interface.
12 [package.metadata.docs.rs]
14 rustdoc-args = ["--cfg", "docsrs"]
19 esplora-async = ["async-interface", "esplora-client/async", "futures"]
20 esplora-async-https = ["esplora-async", "esplora-client/async-https-rustls"]
21 esplora-blocking = ["esplora-client/blocking"]
22 electrum = ["electrum-client"]
26 lightning = { version = "0.0.123-beta", path = "../lightning", default-features = false, features = ["std"] }
27 bitcoin = { version = "0.30.2", default-features = false }
29 futures = { version = "0.3", optional = true }
30 esplora-client = { version = "0.6", default-features = false, optional = true }
31 electrum-client = { version = "0.18.0", optional = true }
34 lightning = { version = "0.0.123-beta", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
35 tokio = { version = "1.35.0", features = ["full"] }
37 [target.'cfg(all(not(target_os = "windows"), not(no_download)))'.dev-dependencies]
38 electrsd = { version = "0.26.0", default-features = false, features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
40 [target.'cfg(all(not(target_os = "windows"), no_download))'.dev-dependencies]
41 electrsd = { version = "0.26.0", default-features = false, features = ["legacy"] }