From 8d08689571ae42e106c4913ee2bad58a90a50005 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 22 Jan 2025 12:43:13 +1100 Subject: [PATCH] node: Remove the default feature The `default` feature is problematic because it overrides `--features=xyz` if `--no-default-features` is used. Remove it. --- node/Cargo.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/node/Cargo.toml b/node/Cargo.toml index c2c0c96..2a252a9 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -39,8 +39,6 @@ anyhow = "1.0.66" # - To use --no-default-features you must configure the bitcoind binary to be version 28 either by having `bitcoind` in your path or using `BITCOIND_EXE=/path/to/bitcoind`. # - `cargo test --no-default-features` uses `v28_0` also. [features] -default = ["28_0"] - # download is not supposed to be used directly only through selecting one of the version feature download = ["bitcoin_hashes", "flate2", "tar", "minreq", "zip"]