Bump versions to 0.0.119/`lightning-invoice` 0.27
[rust-lightning] / lightning-transaction-sync / Cargo.toml
1 [package]
2 name = "lightning-transaction-sync"
3 version = "0.0.119"
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 = []
18 esplora-async = ["async-interface", "esplora-client/async", "futures"]
19 esplora-async-https = ["esplora-async", "esplora-client/async-https-rustls"]
20 esplora-blocking = ["esplora-client/blocking"]
21 electrum = ["electrum-client"]
22 async-interface = []
23
24 [dependencies]
25 lightning = { version = "0.0.119", path = "../lightning", default-features = false, features = ["std"] }
26 bitcoin = { version = "0.30.2", default-features = false }
27 bdk-macros = "0.6"
28 futures = { version = "0.3", optional = true }
29 esplora-client = { version = "0.6", default-features = false, optional = true }
30 electrum-client = { version = "0.18.0", optional = true }
31
32 [dev-dependencies]
33 lightning = { version = "0.0.119", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
34 tokio = { version = "1.35.0", features = ["full"] }
35
36 [target.'cfg(not(no_download))'.dev-dependencies]
37 electrsd = { version = "0.26.0", default-features = false, features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
38
39 [target.'cfg(no_download)'.dev-dependencies]
40 electrsd = { version = "0.26.0", default-features = false, features = ["legacy"] }