From 14395c5a98bf32aca381f495893491a354728c2e Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Tue, 8 Aug 2023 11:06:30 +0200 Subject: [PATCH] Unpin BDK dependency Now that we could upgrade our `esplora-client`, we can unpin BDK. --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 825de6866..cd788cab6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,8 +56,7 @@ lightning-transaction-sync = { version = "0.0.115", features = ["esplora-async-h #lightning-rapid-gossip-sync = { path = "../rust-lightning/lightning-rapid-gossip-sync" } #lightning-transaction-sync = { path = "../rust-lightning/lightning-transaction-sync", features = ["esplora-async"] } -# TODO: unpin BDK once we upgraded the esplora client to 0.5 everywhere. -bdk = { version = "=0.28.0", default-features = false, features = ["std", "async-interface", "use-esplora-async", "sqlite-bundled", "keys-bip39"]} +bdk = { version = "0.28.0", default-features = false, features = ["std", "async-interface", "use-esplora-async", "sqlite-bundled", "keys-bip39"]} reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] } rusqlite = { version = "0.28.0", features = ["bundled"] } bitcoin = "0.29.2"