2 name = "lightning-transaction-sync"
4 authors = ["Elias Rohrer"]
5 license = "MIT OR Apache-2.0"
6 repository = "http://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"]
18 esplora-async = ["async-interface", "esplora-client/async", "futures"]
19 esplora-async-https = ["esplora-async", "reqwest/rustls-tls"]
20 esplora-blocking = ["esplora-client/blocking"]
24 lightning = { version = "0.0.115", path = "../lightning", default-features = false }
25 bitcoin = { version = "0.29.0", default-features = false }
27 futures = { version = "0.3", optional = true }
28 esplora-client = { version = "0.4", default-features = false, optional = true }
29 reqwest = { version = "0.11", optional = true, default-features = false, features = ["json"] }
32 lightning = { version = "0.0.115", path = "../lightning", features = ["std"] }
33 electrsd = { version = "0.22.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_23_0"] }
34 electrum-client = "0.12.0"
35 tokio = { version = "1.14.0", features = ["full"] }