-
Notifications
You must be signed in to change notification settings - Fork 224
/
Copy pathCargo.toml
67 lines (59 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
# highway-rewards-analysis and highway-state-grapher are temporarily disabled becasue
# they use old rewards calculation logic and need to be updated.
members = [
"ci/casper_updater",
"execution_engine",
"execution_engine_testing/test_support",
"execution_engine_testing/tests",
"node",
"smart_contracts/contract",
"smart_contracts/contracts/[!.]*/*",
"storage",
"types",
"utils/global-state-update-gen",
"utils/validation",
"binary_port",
"smart_contracts/sdk",
"smart_contracts/sdk-codegen",
"smart_contracts/sdk-sys",
"smart_contracts/macros",
"cargo-casper",
# "utils/highway-rewards-analysis",
# "utils/highway-state-grapher",
"executor/wasm-common",
"executor/wasm-interface",
"executor/wasm-host",
"executor/wasmer-backend",
"executor/wasm",
]
default-members = [
"ci/casper_updater",
"execution_engine",
"execution_engine_testing/test_support",
"execution_engine_testing/tests",
"node",
"storage",
"types",
"utils/global-state-update-gen",
"utils/validation",
"binary_port",
"smart_contracts/sdk",
"smart_contracts/sdk-sys",
"smart_contracts/sdk-codegen",
"smart_contracts/macros"
# "utils/highway-rewards-analysis",
# "utils/highway-state-grapher",
]
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