-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathCargo.toml
86 lines (79 loc) · 2.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "jormungandr-automation"
version = "0.13.0"
authors = ["Nicolas Di Prima <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tonic = "0.8"
prost = "0.9"
tokio = { version = "1.15", features = ["macros","rt","rt-multi-thread"] }
tokio-stream = "0.1"
futures = "0.3.21"
base64 = "0.13"
bech32 = "0.8"
bytesize = "1.1.0"
structopt = "0.3.26"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-core = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-crypto = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = [ "property-test-api" ] }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-storage = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", features = ["with-bench"] }
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-evm = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master", optional = true }
cardano-legacy-address = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
typed-bytes = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
jormungandr-lib = { path = "../../jormungandr-lib" }
jcli = { path = "../../jcli" }
jortestkit = { git = "https://github.com/input-output-hk/jortestkit.git", branch = "master" }
rand = "0.8"
rand_core = "0.6"
rand_chacha = "0.3"
humantime = "2.0"
custom_debug = "0.5"
thiserror = "1.0"
poldercast = "1.2"
sysinfo = { version = "0.23.1" }
os_info = { version = "3.3.0", default-features = false }
zip = "0.6.0"
flate2 = "1.0.21"
tar = "0.4"
hex = "0.4"
lazy_static = "1"
serde_derive = "1.0"
assert_fs = "1.0"
serde_yaml = "0.8"
regex = "1.6"
fs_extra = "1.1.0"
url = "2.2.0"
graphql_client = "0.10.0"
semver = { version = "1.0", features = ["serde"] }
json = "0.12.4"
strum = { version = "0.23", features = ["derive"] }
tracing = "0.1"
log = { version = "0.4", features = ["serde"] }
netstat2 = "0.9"
multiaddr = { package = "parity-multiaddr", version = "0.11" }
keynesis = "1"
tempfile = "3"
assert_cmd = "2.0.4"
predicates = "2.0"
warp = "0.3"
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["blocking", "json", "rustls-tls"]
[dependencies.tracing-subscriber]
version = "0.3"
default-features = false
features = ["json","fmt"]
[features]
default = []
evm = ["jormungandr-lib/evm", "chain-evm"]
property-test-api = [ ]
[build-dependencies]
tonic-build = "0.6"
versionisator = "1.0.2"