forked from massalabs/massa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1.05 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
[package]
name = "massa_network_worker"
version = "0.1.0"
authors = ["Massa Labs <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
enum-map = { version = "2.4", features = ["serde"] }
futures = "0.3"
itertools = "0.10"
num_enum = "0.5"
nom = "7.1"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.21", features = ["full"] }
tracing = "0.1"
# custom modules
massa_hash = { path = "../massa-hash" }
massa_network_exports = { path = "../massa-network-exports" }
massa_logging = { path = "../massa-logging" }
massa_models = { path = "../massa-models" }
massa_serialization = { path = "../massa-serialization" }
massa_signature = { path = "../massa-signature" }
massa_time = { path = "../massa-time" }
[dev-dependencies]
serial_test = "0.9"
tempfile = "3.3"
massa_models = { path = "../massa-models", features = ["testing"] }
massa_network_exports = { path = "../massa-network-exports", features = [
"testing",
] }