2022-11-23 09:33:37 +01:00
|
|
|
[package]
|
|
|
|
name = "lightning-transaction-sync"
|
2023-10-20 23:44:49 +00:00
|
|
|
version = "0.0.118"
|
2022-11-23 09:33:37 +01:00
|
|
|
authors = ["Elias Rohrer"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-23 08:58:41 +03:00
|
|
|
repository = "https://github.com/lightningdevkit/rust-lightning"
|
2022-11-23 09:33:37 +01:00
|
|
|
description = """
|
|
|
|
Utilities for syncing LDK via the transaction-based `Confirm` interface.
|
|
|
|
"""
|
2023-10-24 15:16:38 +02:00
|
|
|
edition = "2021"
|
2022-11-23 09:33:37 +01:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
esplora-async = ["async-interface", "esplora-client/async", "futures"]
|
2023-11-24 12:48:22 +01:00
|
|
|
esplora-async-https = ["esplora-async", "esplora-client/async-https-rustls"]
|
2022-11-23 09:33:37 +01:00
|
|
|
esplora-blocking = ["esplora-client/blocking"]
|
2023-10-23 10:26:00 +02:00
|
|
|
electrum = ["electrum-client"]
|
2022-11-23 09:33:37 +01:00
|
|
|
async-interface = []
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-24 15:16:38 +02:00
|
|
|
lightning = { version = "0.0.118", path = "../lightning", default-features = false, features = ["std"] }
|
2023-04-27 00:16:40 -07:00
|
|
|
bitcoin = { version = "0.30.2", default-features = false }
|
2022-11-23 09:33:37 +01:00
|
|
|
bdk-macros = "0.6"
|
|
|
|
futures = { version = "0.3", optional = true }
|
2023-04-27 00:16:40 -07:00
|
|
|
esplora-client = { version = "0.6", default-features = false, optional = true }
|
2023-10-23 10:26:00 +02:00
|
|
|
electrum-client = { version = "0.18.0", optional = true }
|
2023-01-06 13:17:48 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-24 15:16:38 +02:00
|
|
|
lightning = { version = "0.0.118", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
|
2023-01-06 13:17:48 +01:00
|
|
|
tokio = { version = "1.14.0", features = ["full"] }
|
2023-12-08 12:29:38 +01:00
|
|
|
|
|
|
|
[target.'cfg(not(no_download))'.dev-dependencies]
|
|
|
|
electrsd = { version = "0.26.0", default-features = false, features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
|
|
|
|
|
|
|
|
[target.'cfg(no_download)'.dev-dependencies]
|
|
|
|
electrsd = { version = "0.26.0", default-features = false, features = ["legacy"] }
|