X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-transaction-sync%2FCargo.toml;h=2e9e13296b6c993e1622c84370e20a2cd97e88b0;hb=c3de782a2baab0c742332bea4783c393edb83311;hp=9dfce6c2ad18a8c50bf9eea4c7fb0748fa1c2da6;hpb=4d2679fac656a3d828877f3f31aad6cff4ada9c8;p=rust-lightning diff --git a/lightning-transaction-sync/Cargo.toml b/lightning-transaction-sync/Cargo.toml index 9dfce6c2..2e9e1329 100644 --- a/lightning-transaction-sync/Cargo.toml +++ b/lightning-transaction-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-transaction-sync" -version = "0.0.113" +version = "0.0.115" authors = ["Elias Rohrer"] license = "MIT OR Apache-2.0" repository = "http://github.com/lightningdevkit/rust-lightning" @@ -16,19 +16,20 @@ rustdoc-args = ["--cfg", "docsrs"] [features] default = [] esplora-async = ["async-interface", "esplora-client/async", "futures"] +esplora-async-https = ["esplora-async", "reqwest/rustls-tls"] esplora-blocking = ["esplora-client/blocking"] async-interface = [] [dependencies] -lightning = { version = "0.0.113", path = "../lightning", default-features = false } +lightning = { version = "0.0.115", path = "../lightning", default-features = false } bitcoin = { version = "0.29.0", 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.4", default-features = false, optional = true } +reqwest = { version = "0.11", optional = true, default-features = false, features = ["json"] } [dev-dependencies] -lightning = { version = "0.0.113", path = "../lightning", features = ["std"] } +lightning = { version = "0.0.115", 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" tokio = { version = "1.14.0", features = ["full"] }