-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
61 lines (58 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
[package]
name = "iapyx"
version = "0.0.1"
authors = ["dkijania <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bech32 = "0.9"
wallet-core = { git = "https://github.com/input-output-hk/chain-wallet-libs.git", branch = "master"}
wallet = { git = "https://github.com/input-output-hk/chain-wallet-libs.git", branch = "master"}
hdkeygen = { git = "https://github.com/input-output-hk/chain-wallet-libs.git", branch = "master"}
chain-crypto = { 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-addr = { 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-impl-mockchain = { 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-vote = { git = "https://github.com/input-output-hk/chain-libs.git", branch = "master" }
hex = "0.4"
rand = "0.8"
dirs = "4.0"
rand_core = "0.6"
itertools = "0.10.3"
cryptoxide = "0.4.2"
ed25519-bip32 = "^0.3.1"
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-automation = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "master" }
thor = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "master" }
hersir = { git = "https://github.com/input-output-hk/jormungandr.git", branch = "master" }
jortestkit = { git = "https://github.com/input-output-hk/jortestkit.git", branch = "master" }
catalyst-toolbox = { git = "https://github.com/input-output-hk/catalyst-toolbox.git", branch = "test_api_for_snapshot", features=["test-api"]}
valgrind = { path = "../valgrind"}
hyper = "0.13.6"
thiserror = "1.0"
serde_json = "1.0.53"
serde_yaml = "0.8.23"
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "*"
dialoguer = "0.10"
structopt = "0.3"
console = "0.15"
csv = "1.1"
warp = { version = "0.3", features = ["tls"] }
warp-reverse-proxy = "0.3.2"
tokio = { version = "^1.4.0", features = ["macros", "signal", "rt", "fs", "sync"] }
url = "2.1.1"
image = "0.23.12"
eccoxide = { git = "https://github.com/eugene-babichenko/eccoxide.git", branch = "fast-u64-scalar-mul", features = ["fast-u64-scalar-mul"], optional = true }
rayon = "1"
bincode = "1.3.3"
cocoon = { git = "https://github.com/dkijania/cocoon.git" }
vit-servicing-station-lib = { git = "https://github.com/input-output-hk/vit-servicing-station.git", branch = "master" }
[dependencies.reqwest]
version = "0.10.6"
default-features = false
features = ["blocking","rustls-tls"]