-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (62 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
71 lines (62 loc) · 1.71 KB
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
68
69
70
71
[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
[workspace.dependencies]
num-derive = "0.4.2"
num-traits = "0.2.19"