forked from casper-network/casper-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 926 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 = [
"ci/casper_updater",
"client",
"execution_engine",
"grpc/cargo_casper",
"grpc/server",
"grpc/test_support",
"grpc/tests",
"node",
"smart_contracts/contract",
"smart_contracts/contracts/[!.]*/*",
"types",
]
default-members = [
"ci/casper_updater",
"client",
"execution_engine",
"grpc/cargo_casper",
"grpc/server",
"grpc/test_support",
"grpc/tests",
"node",
"smart_contracts/contract",
"types",
]
exclude = ["casper-node-macros"]
# 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]
# TODO: nightly compiler has issues with linking libraries with LTO enabled.
# Change this back to true once stable is supported by default.
lto = false
[profile.bench]
lto = true