Merge pull request #3036 from TheBlueMatt/2024-05-filter-color
[rust-lightning] / lightning-transaction-sync / Cargo.toml
1 [package]
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"
7 description = """
8 Utilities for syncing LDK via the transaction-based `Confirm` interface.
9 """
10 edition = "2021"
11
12 [package.metadata.docs.rs]
13 all-features = true
14 rustdoc-args = ["--cfg", "docsrs"]
15
16 [features]
17 default = ["time"]
18 time = []
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"]
23 async-interface = []
24
25 [dependencies]
26 lightning = { version = "0.0.123-beta", path = "../lightning", default-features = false, features = ["std"] }
27 bitcoin = { version = "0.30.2", default-features = false }
28 bdk-macros = "0.6"
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 }
32
33 [dev-dependencies]
34 lightning = { version = "0.0.123-beta", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
35 tokio = { version = "1.35.0", features = ["full"] }
36
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"] }
39
40 [target.'cfg(all(not(target_os = "windows"), no_download))'.dev-dependencies]
41 electrsd = { version = "0.26.0", default-features = false, features = ["legacy"] }