forked from e-ivkov/iroha2-longevity-load-rs
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
55 lines (46 loc) · 1.25 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
[package]
name = "iroha2-longevity-load-rs"
version = "2.0.0-pre-rc.16"
edition = "2021"
[dependencies]
serde_json = "1.0.73"
serde = "1.0.132"
structopt = "0.3.25"
color-eyre = "0.6.1"
tracing = "0.1.35"
tracing-subscriber = "0.3.14"
strum = "0.24"
strum_macros = "0.24"
async-trait = "0.1.57"
futures-util = "0.3"
rand = "0.8.4"
url = "2.4.0"
[dependencies.tokio]
version = "1"
features = [ "macros", "rt-multi-thread", "signal" ]
[dependencies.hyper]
version = "0.14"
features = [ "client", "server" ]
[dependencies.chrono]
version = "0.4"
features = [ "serde" ]
[dependencies.iroha_client]
git = "https://github.com/hyperledger/iroha.git"
branch = "iroha2-dev"
version = "2.0.0-pre-rc.20"
[dependencies.iroha_data_model]
git = "https://github.com/hyperledger/iroha.git"
branch = "iroha2-dev"
version = "2.0.0-pre-rc.20"
[dependencies.iroha_config]
git = "https://github.com/hyperledger/iroha.git"
branch = "iroha2-dev"
version = "2.0.0-pre-rc.20"
[dependencies.iroha_crypto]
git = "https://github.com/hyperledger/iroha.git"
branch = "iroha2-dev"
version = "2.0.0-pre-rc.20"
[dependencies.iroha_primitives]
git = "https://github.com/hyperledger/iroha.git"
branch = "iroha2-dev"
version = "2.0.0-pre-rc.20"