forked from 20pavlova/massa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 870 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
[package]
name = "massa_protocol_exports"
version = "0.1.0"
authors = ["Massa Labs <[email protected]>"]
edition = "2021"
[dependencies]
displaydoc = "0.2"
thiserror = "1.0"
nom = "=7.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# TODO tag peernet version
peernet = { git = "https://github.com/massalabs/PeerNet", rev = "bf8adf5" }
tempfile = { version = "3.3", optional = true } # use with testing feature
mockall = "0.11.4"
# Custom modules
massa_models = { path = "../massa-models" }
massa_time = { path = "../massa-time" }
massa_storage = { path = "../massa-storage" }
massa_serialization = { path = "../massa-serialization" }
massa_signature = { path = "../massa-signature"}
massa_versioning = { path = "../massa-versioning" }
massa_hash = { path = "../massa-hash"}
[dev-dependencies]
tempfile = "3.3"
[features]
testing = ["tempfile"]