-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
35 lines (32 loc) · 1.09 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
[profile.release]
panic = "unwind"
[profile.production]
inherits = "release"
[workspace]
resolver = "2"
members = [
"node",
"pallets/parachain-staking",
"pallets/vesting-manager",
"pallets/orml-currencies-allowance-extension",
"pallets/orml-tokens-management-extension",
"pallets/treasury-buyout-extension",
"runtime/common",
"runtime/amplitude",
"runtime/foucoco",
"runtime/pendulum",
"runtime/integration-tests",
"chain-extensions/token",
"chain-extensions/price",
"chain-extensions/common",
]
# need this because of bifrost farming dependency in runtime
# bifrost farming uses different orml-traits for orml-currencies
[patch."https://github.com/open-web3-stack/open-runtime-module-library"]
orml-traits = { git = "https://github.com/open-web3-stack//open-runtime-module-library", branch = "polkadot-v1.1.0" }
orml-tokens = { git = "https://github.com/open-web3-stack//open-runtime-module-library", branch = "polkadot-v1.1.0" }
##
### need this because of bifrost farming dependency in runtime
### bifrost uses :
### orml packages { version = "0.4.1-dev" }
### zenlink packages { version = "*" }