forked from rust-bitcoin/bitcoind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "bitcoind"
version = "0.29.0"
authors = ["Riccardo Casatta <riccardo@casatta.it>"]
description = "Utility to run a regtest bitcoind process, useful in integration testing environment"
license = "MIT"
repository = "https://github.com/RCasatta/bitcoind"
documentation = "https://docs.rs/bitcoind/"
rust-version = "1.41.1" # without features, with any feature is 1.57
edition = "2018"
[dependencies]
bitcoincore-rpc = "0.16.0"
tempfile = "3.1"
log = "0.4"
which = "4.2.5"
anyhow = "1.0.66"
[dev-dependencies]
env_logger = "0.9.0"
[build-dependencies]
bitcoin_hashes = { version = "0.11", optional = true }
filetime = { version = "0.2", optional = true }
flate2 = { version = "1.0", optional = true }
tar = { version = "0.4", optional = true }
ureq = { version = "2.5.0", optional = true }
zip = { version = "0.6", optional = true }
[features]
"download" = [ "bitcoin_hashes", "filetime", "flate2", "tar", "ureq", "zip"]
"23_0" = ["download"]
"22_0" = ["download"]
"0_21_1" = ["download"]
"0_21_0" = ["download"]
"0_20_1" = ["download"]
"0_20_0" = ["download"]
"0_19_1" = ["download"]
"0_19_0_1" = ["download"]
"0_18_1" = ["download"]
"0_18_0" = ["download"]
"0_17_1" = ["download"]