forked from MandalaChain/Mandala-Node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
183 lines (160 loc) · 17.4 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
[workspace]
resolver = "2"
members = [
"node",
"pallets/*",
"runtime/niskala",
"primitives",
]
[profile.release]
panic = "unwind"
[workspace.dependencies]
substrate-wasm-builder = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-utility = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-multisig = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
frame-benchmarking = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
frame-benchmarking-cli = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-transaction-payment-rpc = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-basic-authorship = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-chain-spec = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-cli = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-client-api = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-offchain = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-consensus = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-executor = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-network = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-network-sync = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-rpc = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-service = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-sysinfo = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-telemetry = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-consensus-manual-seal = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-tracing = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-transaction-pool = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sc-transaction-pool-api = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-api = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-block-builder = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-blockchain = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-consensus-aura = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-core = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-keystore = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-io = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-runtime = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
sp-timestamp = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
substrate-frame-rpc-system = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
substrate-prometheus-endpoint = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
try-runtime-cli = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
# Polkadot
polkadot-cli = { git = "https://github.com/MandalaChain/polkadot-sdk", features = [
"rococo-native",
], branch = "mandala-polkadot-v1.11.0", default-features = false }
polkadot-primitives = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
# Cumulus
cumulus-client-cli = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-client-consensus-aura = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-client-consensus-common = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-client-service = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-primitives-core = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-primitives-parachain-inherent = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-relay-chain-interface = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
color-print = "0.3.4"
sp-genesis-builder = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
polkadot-parachain-primitives = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
"derive",
] }
hex-literal = { version = "0.4.1" }
log = { version = "0.4.19", default-features = false }
scale-info = { version = "2.10.0", default-features = false, features = [
"derive",
] }
smallvec = "1.11.0"
blake2-rfc = { version = "0.2.18", default-features = false }
impl-serde = { version = "0.3.1", default-features = false }
libsecp256k1 = { version = "0.7", default-features = false }
sha3 = { version = "0.10", default-features = false }
tokio = { version = "1.36" }
hex = { version = "0.4.3", default-features = false }
# Substrate
frame-executive = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
frame-support = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
frame-system = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
frame-system-benchmarking = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
frame-system-rpc-runtime-api = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
frame-try-runtime = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-aura = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-authorship = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-balances = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-session = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-sudo = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-timestamp = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-transaction-payment = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
sp-inherents = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
sp-offchain = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
sp-session = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
sp-std = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
sp-transaction-pool = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
sp-version = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
# Polkadot
pallet-xcm = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
polkadot-parachain = { package = "polkadot-parachain-bin", git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
polkadot-runtime-common = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
xcm-builder = { package = "staging-xcm-builder", git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
xcm-executor = { package = "staging-xcm-executor", git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
xcm = { package = "staging-xcm", git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
pallet-message-queue = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
parachains-common = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
sp-runtime-interface = { git = "https://github.com/MandalaChain/polkadot-sdk", default-features = false, branch = "mandala-polkadot-v1.11.0" }
orml-traits = { git = "https://github.com/MandalaChain/open-runtime-module-library", default-features = false, branch = "mandala-polkadot-v1.11.0" }
# Cumulus
cumulus-pallet-aura-ext = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-pallet-dmp-queue = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-pallet-parachain-system = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-pallet-session-benchmarking = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-pallet-xcm = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-pallet-xcmp-queue = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-primitives-timestamp = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-primitives-utility = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-collator-selection = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
parachain-info = { package = "staging-parachain-info", git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-client-collator = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-client-consensus-proposer = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
cumulus-primitives-aura = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
serde = { version = "1.0.197", default-features = false }
serde_json = { version = "1.0.114", default-features = false }
# Build
substrate-build-script-utils = { git = "https://github.com/MandalaChain/polkadot-sdk", branch = "mandala-polkadot-v1.11.0", default-features = false }
# EVM
pallet-evm = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-ethereum = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fp-account = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fp-evm = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fp-rpc = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fp-self-contained = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-base-fee = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-dynamic-fee = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-evm-chain-id = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-evm-precompile-modexp = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-evm-precompile-sha3fips = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
pallet-evm-precompile-simple = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
# host function
moonbeam-primitives-ext = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# # tracing
# evm-tracing-events = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# moonbeam-rpc-primitives-debug = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# moonbeam-rpc-primitives-txpool = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# moonbeam-evm-tracer = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# # tracing client
# moonbeam-rpc-debug = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# moonbeam-rpc-trace = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# moonbeam-rpc-txpool = { git = "https://github.com/MandalaChain/moonbeam", branch = "mandala-polkadot-v1.11.0", default-features = false }
# EVM client
fc-consensus = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fc-db = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fc-api = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fc-mapping-sync = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fc-rpc = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fc-rpc-core = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fp-consensus = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }
fp-storage = { git = "https://github.com/MandalaChain/frontier", branch = "mandala-polkadot-v1.11.0", default-features = false }