forked from massalabs/massa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 947 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
[package]
name = "massa_final_state"
version = "0.1.0"
authors = ["Massa Labs <[email protected]>"]
edition = "2021"
[dependencies]
displaydoc = "0.2"
nom = "7.1"
thiserror = "1.0"
# custom modules
massa_ledger_exports = { path = "../massa-ledger-exports" }
massa_ledger_worker = { path = "../massa-ledger-worker", optional = true }
massa_models = { path = "../massa-models" }
massa_async_pool = { path = "../massa-async-pool" }
massa_serialization = { path = "../massa-serialization" }
[dev-dependencies]
massa_async_pool = { path = "../massa-async-pool", features = ["testing"] }
massa_signature = { path = "../massa-signature" }
massa_ledger_worker = { path = "../massa-ledger-worker", features = [
"testing",
] }
# for more information on what are the following features used for, see the cargo.toml at workspace level
[features]
testing = ["massa_ledger_worker/testing", "massa_async_pool/testing"]
sandbox = ["massa_async_pool/sandbox"]