From c8d5ffb43ca0cd1ddd8ae2500664ca112cbe025a Mon Sep 17 00:00:00 2001 From: benthecarman Date: Fri, 3 Mar 2023 20:27:49 -0600 Subject: [PATCH] Disable default features for rust-bitcoin --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5f1c2207..6586a21e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ path = "src/lib.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } -bitcoin = { version = "0.29.1", features = ["serde"] } +bitcoin = { version = "0.29.1", default-features = false, features = ["serde"] } log = "^0.4" ureq = { version = "2.5.0", features = ["json"], optional = true } reqwest = { version = "0.11", optional = true, default-features = false, features = ["json"] }