forked from hyperledger-iroha/iroha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (28 loc) · 1.01 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
[package]
name = "iroha_p2p"
edition.workspace = true
version.workspace = true
authors.workspace = true
license.workspace = true
categories = ["network-programming"]
[lints]
workspace = true
[dependencies]
iroha_logger = { workspace = true }
iroha_crypto = { workspace = true, default-features = true }
iroha_data_model = { workspace = true, default-features = true, features = ["transparent_api"] }
iroha_primitives = { workspace = true }
iroha_config = { workspace = true }
iroha_config_base = { workspace = true }
iroha_data_model_derive = { workspace = true }
rand = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "io-util", "net", "time"] }
futures = { workspace = true, features = ["alloc"] }
async-trait = { workspace = true }
parity-scale-codec = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
displaydoc = { workspace = true }
derive_more = { workspace = true }
bytes = { workspace = true }
[dev-dependencies]
test_network = { workspace = true }