forked from input-output-hk/catalyst-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (67 loc) · 2.75 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
[package]
name = "catalyst-toolbox"
version = "0.3.0"
edition = "2018"
authors = ["danielsanchezq <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Rust based CLI utility for catalyst operations"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "catalyst-toolbox"
test = false
bench = false
[dependencies]
bech32 = "0.7"
assert_fs = "1"
csv = "1.1"
wallet = { git = "https://github.com/input-output-hk/chain-wallet-libs.git", branch = "master" }
chain-addr = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
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" }
chain-ser = { 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" }
chain-time = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chain-impl-mockchain = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
chrono = "0.4"
jcli = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "master" }
jormungandr-lib = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "master" }
jormungandr-testing-utils = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "master" }
jormungandr-integration-tests = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "master" }
jortestkit = { git = "https://github.com/input-output-hk/jortestkit.git", branch = "master" }
# TODO: Remove fixed and migrate to rust_decimal
fixed = { version = "1.7", features = ["serde"] }
rust_decimal = "1.16"
futures = "0.3"
log = "0.4"
once_cell = "1.8"
reqwest = { version = "0.11", features = ["blocking", "json"] }
rand = "0.8.3"
rand_chacha = "0.3"
regex = "1.5"
serde = "1.0"
serde_json = "1.0"
structopt = "0.3"
stderrlog = "0.5"
serde_yaml = "0.8.17"
sscanf = "0.1"
thiserror = "1.0"
tokio = { version = "1.8", features = ["rt", "macros"] }
url = "2.2"
hex = "0.4"
image = "0.23.12"
qrcode = "0.12"
quircs = "0.10.0"
symmetric-cipher = { git = "https://github.com/input-output-hk/chain-wallet-libs.git", branch = "master" }
graphql_client = "0.10"
gag = "1"
vit-servicing-station-lib = { git = "https://github.com/danielsanchezq/vit-servicing-station.git", branch = "reviews-grouped" }
[dev-dependencies]
rand_chacha = "0.3"
assert_cmd = "0.10"
predicates = "1"
assert_fs = "1.0.0"
chain-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
quickcheck = "0.9"
quickcheck_macros = "0.9"
[build-dependencies]
versionisator = "1.0.3"