-
Notifications
You must be signed in to change notification settings - Fork 90
/
Cargo.toml
43 lines (37 loc) · 1022 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
32
33
34
35
36
37
38
39
40
41
42
43
[workspace]
members = [
"common/channel",
"common/directory",
"common/hashset_delay",
"common/lighthouse_metrics",
"common/merkle_tree",
"common/task_executor",
"common/zgs_version",
"common/unused_port",
"common/append_merkle",
"node",
"node/chunk_pool",
"node/file_location_cache",
"node/log_entry_sync",
"node/miner",
"node/network",
"node/pruner",
"node/router",
"node/rpc",
"node/shared_types",
"node/storage",
"node/storage-async",
"node/sync",
]
resolver = "2"
[workspace.dependencies]
metrics = { git = "https://github.com/Conflux-Chain/conflux-rust.git", rev = "c4734e337c66d38e6396742cd5117b596e8d2603" }
[patch.crates-io]
discv5 = { path = "version-meld/discv5" }
eth2_ssz = { path = "version-meld/eth2_ssz" }
enr = { path = "version-meld/enr" }
[profile.bench.package.'storage']
debug = true
[profile.dev]
# enabling debug_assertions will make node fail to start because of checks in `clap`.
debug-assertions = false