From 0f37131c16323a87a48a98b61035b981b2f58d8d Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Thu, 7 May 2020 15:14:05 +0200 Subject: [PATCH] [blockchain] add the Esplora backend --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a3aa967..2ef3a52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,12 +14,14 @@ base64 = "^0.11" # Optional dependencies sled = { version = "0.31.0", optional = true } electrum-client = { version = "0.1.0-beta.5", optional = true } +reqwest = { version = "0.10", optional = true, features = ["blocking", "json"] } [features] minimal = [] compiler = ["miniscript/compiler"] default = ["key-value-db", "electrum"] electrum = ["electrum-client"] +esplora = ["reqwest"] key-value-db = ["sled"] [dev-dependencies] -- 2.49.0