From d432745da583e2c38e67cae540b9417d76867bfa Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Thu, 13 Oct 2022 12:00:46 +0200 Subject: [PATCH] Cargo: don't require the 'compiler' feature from miniscript --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 22ab5863..8ae85c26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ jsonrpc_server = [] [dependencies] # For managing transactions (it re-exports the bitcoin crate) -miniscript = { version = "6.0.0", features = ["compiler", "use-serde"] } +miniscript = { version = "6.0.0", features = ["use-serde"] } # Don't reinvent the wheel dirs = "3.0"