-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (46 loc) · 1.04 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
[workspace]
members = [
"node",
"runtime/common",
"runtime/genshiro",
"runtime/equilibrium",
"pallets/chainbridge",
"pallets/eq-multisig-sudo",
"pallets/eq-margin-call",
"pallets/eq-aggregates",
"pallets/eq-treasury",
"pallets/eq-whitelists",
"pallets/eq-bailsman",
"pallets/eq-balances",
"pallets/eq-crowdloan-dots",
"pallets/eq-rate",
"pallets/eq-session-manager",
"pallets/eq-distribution",
"pallets/eq-vesting",
"pallets/eq-claim",
"pallets/eq-lending",
"pallets/eq-lockdrop",
"pallets/eq-assets",
"pallets/eq-bridge",
"pallets/eq-dex",
"pallets/eq-migration",
"pallets/eq-mm-pool",
"pallets/eq-market-maker",
"pallets/eq-wrapped-dot",
"pallets/eq-staking",
"pallets/q-swap",
"pallets/gens-binary-opt",
"eq-primitives",
"eq-utils",
"eq-xcm",
]
[profile.release]
# Substrate runtime requires unwinding.
panic = "unwind"
[profile.production]
opt-level = 3
inherits = "release"
lto = true
codegen-units = 1
[profile.dev]
debug = 0