-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (37 loc) · 1.36 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
43
44
45
46
47
[package]
name = "tapyrusd"
version = "0.1.0"
authors = ["Riccardo Casatta <[email protected]>"]
description = "Utility to run a regtest tapyrusd process, useful in integration testing environment"
license = "MIT"
repository = "https://github.com/chaintope/tapyrusd"
documentation = "https://docs.rs/tapyrusd/"
rust-version = "1.56.1"
edition = "2018"
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
[dependencies]
tapyruscore-rpc = { git="https://github.com/chaintope/rust-tapyruscore-rpc", subdir = "client", features = ["rand"] }
log = "0.4"
which = "4.2.5"
anyhow = "1.0.66"
tempfile = "3"
[dev-dependencies]
env_logger = "0.9.0"
[build-dependencies]
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 }
zip = { version = "0.6", optional = true }
anyhow = "1.0.66"
[features]
# download is not supposed to be used directly only through selecting one of the version feature
"download" = ["bitcoin_hashes", "flate2", "tar", "minreq", "zip"]
"0_5_2" = ["download", "0_5_1"]
"0_5_1" = ["download"]
"doc" = [] # used only for documentation building
[package.metadata.docs.rs]
features = ["download", "doc"]
rustdoc-args = ["--cfg", "docsrs"]