From 42ef7e0e756016ba84823904caf7f75907584c8d Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Tue, 29 Oct 2024 21:11:37 -0700 Subject: [PATCH] Mark optional deps optional to keep out of tree --- protocol/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 06f324c..876610b 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -15,7 +15,7 @@ std = ["alloc", "bitcoin/std", "rand/std", "rand/std_rng"] alloc = [] [dependencies] -futures = { version = "0.3.30", default-features = false } +futures = { version = "0.3.30", default-features = false, optional = true } rand = { version = "0.8.0", default-features = false } bitcoin = { version = "0.32.0", default-features = false }