forked from massalabs/massa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.37 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_factory_worker"
version = "0.27.6"
authors = ["Massa Labs <[email protected]>"]
edition = "2021"
[features]
sandbox = []
test-exports = ["massa_factory_exports/test-exports", "massa_pos_exports/test-exports", "massa_pool_exports/test-exports", "massa_protocol_exports/test-exports", "massa_wallet/test-exports"]
[dependencies]
parking_lot = {workspace = true, "features" = ["deadlock_detection"]}
crossbeam-channel = {workspace = true}
tracing = {workspace = true}
massa_channel = {workspace = true}
massa_models = {workspace = true}
massa_factory_exports = {workspace = true}
massa_signature = {workspace = true}
massa_storage = {workspace = true}
massa_time = {workspace = true}
massa_wallet = {workspace = true}
massa_pos_exports = {workspace = true}
massa_pool_exports = {workspace = true}
massa_versioning = {workspace = true}
[dev-dependencies]
num = {workspace = true}
massa_hash = {workspace = true}
massa_protocol_exports = {workspace = true, "features" = ["test-exports"]}
massa_consensus_exports = {workspace = true, "features" = ["test-exports"]}
massa_factory_exports = {workspace = true, "features" = ["test-exports"]}
massa_wallet = {workspace = true, "features" = ["test-exports"]}
massa_pos_exports = {workspace = true, "features" = ["test-exports"]}
massa_pool_exports = {workspace = true, "features" = ["test-exports"]}
serial_test = { workspace = true }