Update crate version numbers to 0.0.117-alpha1/invoice 0.25-alpha1
[rust-lightning] / lightning-transaction-sync / Cargo.toml
1 [package]
2 name = "lightning-transaction-sync"
3 version = "0.0.117-alpha1"
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 = "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-async-https = ["esplora-async", "reqwest/rustls-tls"]
20 esplora-blocking = ["esplora-client/blocking"]
21 async-interface = []
22
23 [dependencies]
24 lightning = { version = "0.0.117-alpha1", path = "../lightning", default-features = false }
25 bitcoin = { version = "0.29.0", default-features = false }
26 bdk-macros = "0.6"
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"] }
30
31 [dev-dependencies]
32 lightning = { version = "0.0.117-alpha1", 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"] }