Avoid `poll`ing completed futures in the `background-processor`
[rust-lightning] / lightning-transaction-sync / Cargo.toml
1 [package]
2 name = "lightning-transaction-sync"
3 version = "0.0.114"
4 authors = ["Elias Rohrer"]
5 license = "MIT OR Apache-2.0"
6 repository = "http://github.com/lightningdevkit/rust-lightning"
7 description = """
8 Utilities for syncing LDK via the transaction-based `Confirm` interface.
9 """
10 edition = "2018"
11
12 [package.metadata.docs.rs]
13 all-features = true
14 rustdoc-args = ["--cfg", "docsrs"]
15
16 [features]
17 default = []
18 esplora-async = ["async-interface", "esplora-client/async", "futures"]
19 esplora-blocking = ["esplora-client/blocking"]
20 async-interface = []
21
22 [dependencies]
23 lightning = { version = "0.0.114", path = "../lightning", default-features = false }
24 bitcoin = { version = "0.29.0", default-features = false }
25 bdk-macros = "0.6"
26 futures = { version = "0.3", optional = true }
27 esplora-client = { version = "0.3.0", default-features = false, optional = true }
28
29 [dev-dependencies]
30 lightning = { version = "0.0.114", path = "../lightning", features = ["std"] }
31 electrsd = { version = "0.22.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_23_0"] }
32 electrum-client = "0.12.0"
33 once_cell = "1.16.0"
34 tokio = { version = "1.14.0", features = ["full"] }