forked from casper-network/casper-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (41 loc) · 1.02 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
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
members = [
"ci/casper_updater",
"execution_engine",
"execution_engine_testing/test_support",
"execution_engine_testing/tests",
"hashing",
"json_rpc",
"node",
"smart_contracts/contract",
"smart_contracts/contracts/[!.]*/*",
"types",
"utils/global-state-update-gen",
"utils/validation",
"utils/highway-rewards-analysis",
]
default-members = [
"ci/casper_updater",
"execution_engine",
"execution_engine_testing/test_support",
"execution_engine_testing/tests",
"hashing",
"json_rpc",
"node",
"types",
"utils/global-state-update-gen",
"utils/validation",
"utils/highway-rewards-analysis",
]
exclude = ["utils/nctl/remotes/casper-client-rs"]
resolver = "2"
# Include debug symbols in the release build of `casper-engine-tests` so that `simple-transfer` will yield useful
# perf data.
[profile.release.package.casper-engine-tests]
debug = true
[profile.release]
codegen-units = 1
lto = true
[profile.bench]
codegen-units = 1
lto = true