forked from aleph-zero-foundation/aleph-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (44 loc) · 974 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
44
45
46
47
48
[workspace]
members = [
"aggregator",
"baby-liminal-extension",
"bin/node",
"bin/runtime",
"clique",
"finality-aleph",
"pallets/aleph",
"pallets/baby-liminal",
"pallets/elections",
"pallets/support",
"pallets/committee-management",
"poseidon",
"primitives",
]
exclude = [
"aleph-client",
"benches/payout-stakers",
"bin/cliain",
"contracts/access_control",
"contracts/adder",
"contracts/adder",
"contracts/button",
"contracts/game_token",
"contracts/marketplace",
"contracts/poseidon_host_bench",
"contracts/simple_dex",
"contracts/ticket_token",
"contracts/wrapped_azero",
"e2e-tests",
"flooder",
"fork-off",
"relations",
"relations/src/proc_macro",
"scripts/synthetic-network/synthetic-link",
]
[profile.release]
# Substrate runtime requires unwinding.
panic = "unwind"
[profile.production]
inherits = "release"
lto = true
codegen-units = 1