-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathCargo.toml
39 lines (33 loc) · 979 Bytes
/
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
[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 }
iroha_primitives = { workspace = true }
iroha_config = { workspace = true }
iroha_futures = { 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]
iroha_config_base = { workspace = true }