-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
40 lines (36 loc) · 1.76 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
[profile.release]
panic = 'unwind'
[workspace]
members = [
'node',
'runtime/odyssey',
'runtime/gladios',
'runtime/pioneer',
'runtime/common',
]
[profile.production]
inherits = "release"
#lto = true
# More code generation units allows more of a crate to be processed in parallel possibly reducing compile time, but may produce slower code.
# https://github.com/paritytech/polkadot/issues/4311
#codegen-units = 1
#[patch."https://github.com/aresprotocols/ocw-suit"]
#ares-oracle-provider-support = { path = "../ocw-suit/pallets/ares-oracle-provider-support" }
#ares-oracle = { path = "../ocw-suit/pallets/ares-oracle" }
#oracle-finance = { path = "../ocw-suit/pallets/oracle-finance" }
#member-extend = { path = "../ocw-suit/pallets/member-extend" }
#pallet-ares-challenge = { path = "../ocw-suit/pallets/challenge" }
#pallet-price-estimates = { path = "../ocw-suit/pallets/price-estimates" }
#staking-extend = { path = "../ocw-suit/pallets/staking-extend" }
#ares-rpc = { path = "../ocw-suit/rpc/ares-rpc" }
#[patch."https://github.com/aresprotocols/ocw-suit"]
#ares-oracle-provider-support = { path = "../ares-ocw-suit/pallets/ares-oracle-provider-support" }
#ares-oracle = { path = "../ares-ocw-suit/pallets/ares-oracle" }
#oracle-finance = { path = "../ares-ocw-suit/pallets/oracle-finance" }
#seed-reader = { path = "../ares-ocw-suit/tools/seed-reader" }
#bound-vec-helper = { path = "../ares-ocw-suit/tools/bound-vec-helper" }
#pallet-ares-challenge = { path = "../ares-ocw-suit/pallets/challenge" }
#pallet-price-estimates = { path = "../ares-ocw-suit/pallets/price-estimates" }
#staking-extend = { path = "../ares-ocw-suit/pallets/staking-extend" }
#ares-rpc = { path = "../ares-ocw-suit/rpc/ares-rpc" }
#manual-bridge = { path = "../ares-ocw-suit/pallets/manual-bridge" }