Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@ serde_json = { version = "1.0.117" }
env_logger = "0.9.0"

[build-dependencies]
anyhow = { version = "1.0.66", optional = true }
bitcoin_hashes = { version = ">= 0.13, <= 0.14", optional = true }
flate2 = { version = "1.0", optional = true }
tar = { version = "0.4", optional = true }
minreq = { version = "2.9.1", default-features = false, features = [
"https",
], optional = true }
minreq = { version = "2.9.1", default-features = false, features = ["https"], optional = true }
zip = { version = "0.6", optional = true }
anyhow = "1.0.66"

# Please note, in this crate the version features are mutally exclusive.
#
Expand All @@ -43,7 +41,7 @@ anyhow = "1.0.66"
# path or using `BITCOIND_EXE=/path/to/bitcoind`. Note also that the feature enabled should match
# the version from `bitcoind --version`.
[features]
download = ["bitcoin_hashes", "flate2", "tar", "minreq", "zip"]
download = ["anyhow", "bitcoin_hashes", "flate2", "tar", "minreq", "zip"]

# We support all minor releases of the latest three versions.
28_0 = ["27_2"]
Expand Down
Loading