forked from polkadot-fellows/runtimes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 1.27 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
[workspace.package]
version = "1.0.0"
authors = ["Polkadot Fellowship"]
edition = "2021"
repository = "https://github.com/polkadot-fellows/runtimes.git"
license = "GPL-3.0-only" # TODO <https://github.com/polkadot-fellows/runtimes/issues/29>
[workspace]
resolver = "2"
members = [
"chain-spec-generator",
"relay/kusama",
"relay/kusama/constants",
"relay/polkadot",
"relay/polkadot/constants",
"system-parachains/asset-hubs/asset-hub-kusama",
"system-parachains/asset-hubs/asset-hub-kusama/primitives",
"system-parachains/asset-hubs/asset-hub-polkadot",
"system-parachains/asset-hubs/asset-hub-polkadot/primitives",
"system-parachains/bridge-hubs/bridge-hub-kusama",
"system-parachains/bridge-hubs/bridge-hub-kusama/primitives",
"system-parachains/bridge-hubs/bridge-hub-polkadot",
"system-parachains/bridge-hubs/bridge-hub-polkadot/primitives",
"system-parachains/collectives/collectives-polkadot",
"system-parachains/constants",
"system-parachains/encointer",
"system-parachains/gluttons/glutton-kusama",
"integration-tests/emulated/assets/asset-hub-kusama",
"integration-tests/emulated/assets/asset-hub-polkadot",
]
[profile.release]
# Polkadot runtime requires unwinding.
panic = "unwind"
opt-level = 3
[profile.production]
inherits = "release"
lto = true
codegen-units = 1