mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-01-19 05:43:55 +01:00
31ea90eba2
Now that we upgraded `esplora-client` to 0.6 we can use `async-https-rustls` instead of manually overriding the `reqwest` dependency.
36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[package]
|
|
name = "lightning-transaction-sync"
|
|
version = "0.0.118"
|
|
authors = ["Elias Rohrer"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/lightningdevkit/rust-lightning"
|
|
description = """
|
|
Utilities for syncing LDK via the transaction-based `Confirm` interface.
|
|
"""
|
|
edition = "2018"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
default = []
|
|
esplora-async = ["async-interface", "esplora-client/async", "futures"]
|
|
esplora-async-https = ["esplora-async", "esplora-client/async-https-rustls"]
|
|
esplora-blocking = ["esplora-client/blocking"]
|
|
electrum = ["electrum-client"]
|
|
async-interface = []
|
|
|
|
[dependencies]
|
|
lightning = { version = "0.0.118", path = "../lightning", default-features = false }
|
|
bitcoin = { version = "0.30.2", default-features = false }
|
|
bdk-macros = "0.6"
|
|
futures = { version = "0.3", optional = true }
|
|
esplora-client = { version = "0.6", default-features = false, optional = true }
|
|
electrum-client = { version = "0.18.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
lightning = { version = "0.0.118", path = "../lightning", features = ["std", "_test_utils"] }
|
|
electrsd = { version = "0.26.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_25_0"] }
|
|
tokio = { version = "1.14.0", features = ["full"] }
|