Store whether a forwarded HTLC is blinded in PendingHTLCRouting
[rust-lightning] / lightning-transaction-sync / Cargo.toml
index 395410951db5c061f859b17d9fa7790dc4981e20..20e03ce6c2767721295e139bef579ff5e1fa63be 100644 (file)
@@ -1,9 +1,9 @@
 [package]
 name = "lightning-transaction-sync"
-version = "0.0.114"
+version = "0.0.118"
 authors = ["Elias Rohrer"]
 license = "MIT OR Apache-2.0"
-repository = "http://github.com/lightningdevkit/rust-lightning"
+repository = "https://github.com/lightningdevkit/rust-lightning"
 description = """
 Utilities for syncing LDK via the transaction-based `Confirm` interface.
 """
@@ -16,19 +16,20 @@ 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.114", path = "../lightning", default-features = false }
-bitcoin = { version = "0.29.0", default-features = false }
+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.3.0", default-features = false, 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.114", path = "../lightning", features = ["std"] }
-electrsd = { version = "0.22.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_23_0"] }
-electrum-client = "0.12.0"
-once_cell = "1.16.0"
+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"] }