Skip to content

Commit

Permalink
Mark optional deps optional to keep out of tree
Browse files Browse the repository at this point in the history
  • Loading branch information
nyonson committed Oct 30, 2024
1 parent 8b4363c commit 02dee76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ std = ["alloc", "bitcoin/std", "rand/std", "rand/std_rng"]
alloc = []

[dependencies]
futures = { version = "0.3.30", default-features = false }
rand = { version = "0.8.0", default-features = false }
futures = { version = "0.3.30", default-features = false, optional = true }
rand = { version = "0.8.0", default-features = false, optional = true }
bitcoin = { version = "0.32.0", default-features = false }

[dev-dependencies]
Expand Down

0 comments on commit 02dee76

Please sign in to comment.