-
Notifications
You must be signed in to change notification settings - Fork 735
Expand file tree
/
Copy pathCargo.toml
More file actions
158 lines (144 loc) · 9.52 KB
/
Cargo.toml
File metadata and controls
158 lines (144 loc) · 9.52 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[package]
name = "runtime-integration-tests"
version = "2.1.3"
authors = ["Acala Developers"]
edition = "2021"
[dependencies]
smallvec = "1.4.0"
codec = { package = "parity-scale-codec", version = "2.3.1", features = ["derive", "max-encoded-len"] }
serde = { version = "1.0.124" }
serde_json = "1.0.68"
hex = { version = "0.4" }
hex-literal = { version = "0.3.1" }
libsecp256k1 = { version = "0.6" }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13"}
pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13"}
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features =false }
pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", features = ["historical"] }
pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
# cumulus
cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-primitives-utility = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-primitives-timestamp = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-pallet-xcm = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
# polkadot
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
orml-auction = { path = "../../orml/auction" }
orml-authority = { path = "../../orml/authority" }
orml-benchmarking = { path = "../../orml/benchmarking", optional = true }
orml-oracle = { path = "../../orml/oracle" }
orml-oracle-rpc-runtime-api = { path = "../../orml/oracle/rpc/runtime-api" }
orml-tokens = { path = "../../orml/tokens" }
orml-traits = { path = "../../orml/traits" }
orml-vesting = { path = "../../orml/vesting" }
orml-rewards = { path = "../../orml/rewards" }
orml-nft= { path = "../../orml/nft" }
orml-xtokens = { path = "../../orml/xtokens" }
orml-xcm-support = { path = "../../orml/xcm-support" }
orml-unknown-tokens = { path = "../../orml/unknown-tokens" }
orml-xcm = { path = "../../orml/xcm" }
module-transaction-payment = { path = "../../modules/transaction-payment" }
module-asset-registry = { path = "../../modules/asset-registry" }
module-auction-manager = { path = "../../modules/auction-manager" }
module-cdp-engine = { path = "../../modules/cdp-engine" }
module-cdp-treasury = { path = "../../modules/cdp-treasury" }
module-collator-selection = { path = "../../modules/collator-selection" }
module-currencies = { path = "../../modules/currencies" }
module-dex = { path = "../../modules/dex" }
module-emergency-shutdown = { path = "../../modules/emergency-shutdown" }
module-evm = { path = "../../modules/evm" }
module-evm-accounts = { path = "../../modules/evm-accounts" }
module-evm-bridge = { path = "../../modules/evm-bridge" }
module-honzon = { path = "../../modules/honzon" }
module-loans = { path = "../../modules/loans" }
module-nft = { path = "../../modules/nft" }
module-prices = { path = "../../modules/prices" }
module-incentives = { path = "../../modules/incentives" }
module-support = { path = "../../modules/support" }
module-homa-lite = { path = "../../modules/homa-lite" }
module-homa-xcm = {path = "../../modules/homa-xcm" }
module-homa = {path = "../../modules/homa" }
module-session-manager = { path = "../../modules/session-manager" }
module-relaychain = {path = "../../modules/relaychain" }
primitives = { package = "acala-primitives", path = "../../primitives" }
runtime-common = { path = "../common" }
mandala-runtime = { path = "../mandala" }
karura-runtime = { path = "../karura" }
acala-runtime = { path = "../acala" }
module-evm-rpc-runtime-api = { path = "../../modules/evm/rpc/runtime_api", default-features = false }
ecosystem-renvm-bridge = { path = "../../ecosystem-modules/ren/renvm-bridge" }
ecosystem-starport = { path = "../../ecosystem-modules/starport" }
ecosystem-compound-cash = { path = "../../ecosystem-modules/compound-cash" }
[dev-dependencies]
env_logger = "0.9.0"
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13" }
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
cumulus-test-relay-sproof-builder = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.13" }
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
kusama-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.13" }
xcm-emulator = { git = "https://github.com/shaunxw/xcm-simulator", rev = "4d3bb9dd4fa2cd554a9970ffff816d9346269eaa" }
acala-service = { path = "../../node/service", features = ["with-all-runtime"] }
[features]
default = ["std", "with-karura-runtime"]
no_std = []
with-mandala-runtime = [
"acala-service/with-mandala-runtime",
]
with-karura-runtime = [
"acala-service/with-karura-runtime",
"module-relaychain/kusama"
]
with-acala-runtime = [
"acala-service/with-acala-runtime",
"module-relaychain/polkadot"
]
with-ethereum-compatibility = [
"mandala-runtime/with-ethereum-compatibility",
"module-evm/with-ethereum-compatibility",
]
std = []