forked from massalabs/massa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 924 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
[package]
name = "massa_execution_exports"
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]
displaydoc = "0.2"
thiserror = "1.0"
num = { version = "0.4", features = ["serde"] }
# custom modules
massa_hash = { path = "../massa-hash" }
massa_models = { path = "../massa-models" }
massa_time = { path = "../massa-time" }
massa_storage = { path = "../massa-storage" }
massa_final_state = { path = "../massa-final-state" }
massa_ledger_exports = { path = "../massa-ledger-exports", optional = true }
parking_lot = { version = "0.12", features = ["deadlock_detection"], optional = true }
# for more information on what are the following features used for, see the cargo.toml at workspace level
[features]
testing = ["massa_models/testing", "massa_ledger_exports/testing", "parking_lot"]