-
Notifications
You must be signed in to change notification settings - Fork 358
/
Copy pathCargo.toml
209 lines (190 loc) · 7.18 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
[package]
name = "moonbeam-service"
authors = { workspace = true }
edition = "2021"
homepage = "https://moonbeam.network"
license = "GPL-3.0-only"
version = "0.37.0"
[dependencies]
ansi_term = { workspace = true }
async-io = { workspace = true }
async-trait = { workspace = true }
bip32 = { workspace = true }
derive_more = { workspace = true }
exit-future = { workspace = true }
flume = { workspace = true }
futures = { workspace = true, features = ["compat"] }
hex-literal = { workspace = true }
jsonrpsee = { workspace = true, features = ["macros", "server"] }
libsecp256k1 = { workspace = true, features = ["hmac"] }
log = { workspace = true }
maplit = { workspace = true }
parking_lot = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
sha3 = { workspace = true }
tiny-bip39 = { workspace = true }
tokio = { workspace = true, features = ["macros", "sync"] }
trie-root = { workspace = true }
# Moonbeam
manual-xcm-rpc = { workspace = true }
moonbeam-cli-opt = { workspace = true }
moonbeam-core-primitives = { workspace = true }
moonbeam-finality-rpc = { workspace = true }
moonbeam-primitives-ext = { workspace = true }
moonbeam-relay-encoder = { workspace = true }
moonbeam-rpc-debug = { workspace = true }
moonbeam-rpc-primitives-debug = { workspace = true }
moonbeam-rpc-primitives-txpool = { workspace = true }
moonbeam-rpc-trace = { workspace = true }
moonbeam-rpc-txpool = { workspace = true }
moonbeam-runtime-common = { workspace = true }
moonbeam-vrf = { workspace = true }
pallet-parachain-staking = { workspace = true }
pallet-xcm-transactor = { workspace = true }
session-keys-primitives = { workspace = true }
# Moonbeam runtimes
moonbase-runtime = { workspace = true, optional = true }
moonbeam-runtime = { workspace = true, optional = true }
moonriver-runtime = { workspace = true, optional = true }
# Substrate
frame-system-rpc-runtime-api = { workspace = true, features = ["std"] }
pallet-transaction-payment = { workspace = true, features = ["std"] }
pallet-transaction-payment-rpc = { workspace = true }
pallet-transaction-payment-rpc-runtime-api = { workspace = true, features = [
"std",
] }
parity-scale-codec = { workspace = true }
sc-basic-authorship = { workspace = true }
sc-chain-spec = { workspace = true }
sc-cli = { workspace = true }
sc-client-api = { workspace = true }
sc-client-db = { workspace = true }
sc-consensus = { workspace = true }
sc-consensus-grandpa = { workspace = true }
sc-consensus-manual-seal = { workspace = true }
sc-executor = { workspace = true }
sc-informant = { workspace = true }
sc-network = { workspace = true }
sc-network-common = { workspace = true }
sc-network-sync = { workspace = true }
sc-offchain = { workspace = true }
sc-rpc = { workspace = true }
sc-rpc-api = { workspace = true }
sc-service = { workspace = true }
sc-sysinfo = { workspace = true }
sc-telemetry = { workspace = true }
sc-tracing = { workspace = true }
sc-transaction-pool = { workspace = true }
sc-transaction-pool-api = { workspace = true }
sp-api = { workspace = true, features = ["std"] }
sp-block-builder = { workspace = true, features = ["std"] }
sp-blockchain = { workspace = true }
sp-consensus = { workspace = true }
sp-core = { workspace = true, features = ["std"] }
sp-inherents = { workspace = true, features = ["std"] }
sp-io = { workspace = true, features = ["std"] }
sp-keystore = { workspace = true, features = ["std"] }
sp-offchain = { workspace = true, features = ["std"] }
sp-runtime = { workspace = true, features = ["std"] }
sp-session = { workspace = true, features = ["std"] }
sp-storage = { workspace = true, features = ["std"] }
sp-timestamp = { workspace = true, features = ["std"] }
sp-transaction-pool = { workspace = true, features = ["std"] }
sp-trie = { workspace = true, features = ["std"] }
substrate-frame-rpc-system = { workspace = true }
substrate-prometheus-endpoint = { workspace = true }
# Frontier
fc-consensus = { workspace = true }
fc-db = { workspace = true }
fc-api = { workspace = true }
fc-mapping-sync = { workspace = true, features = ["sql"] }
fc-rpc = { workspace = true, features = [
"rpc-binary-search-estimate",
"txpool",
] }
fc-rpc-core = { workspace = true }
fp-consensus = { workspace = true, features = ["std"] }
fp-rpc = { workspace = true, features = ["std"] }
fp-storage = { workspace = true, features = ["std"] }
pallet-ethereum = { workspace = true, features = [
"forbid-evm-reentrancy",
"std",
] }
# Cumulus / Nimbus
async-backing-primitives = { workspace = true }
cumulus-client-cli = { workspace = true }
cumulus-client-collator = { workspace = true }
cumulus-client-consensus-common = { workspace = true }
cumulus-client-consensus-proposer = { workspace = true }
cumulus-client-consensus-relay-chain = { workspace = true }
cumulus-client-network = { workspace = true }
cumulus-client-service = { workspace = true }
cumulus-primitives-core = { workspace = true }
cumulus-primitives-parachain-inherent = { workspace = true }
cumulus-relay-chain-inprocess-interface = { workspace = true }
cumulus-relay-chain-interface = { workspace = true }
cumulus-relay-chain-minimal-node = { workspace = true }
cumulus-relay-chain-rpc-interface = { workspace = true }
cumulus-test-relay-sproof-builder = { workspace = true }
nimbus-consensus = { workspace = true }
# TODO we should be able to depend only on the primitives crate once we move the inherent data provider there.
nimbus-primitives = { workspace = true }
pallet-author-inherent = { workspace = true }
# Polkadot
polkadot-cli = { workspace = true }
polkadot-parachain = { workspace = true }
polkadot-primitives = { workspace = true }
polkadot-service = { workspace = true }
xcm = { workspace = true }
# Benchmarking
frame-benchmarking = { workspace = true, features = ["std"] }
frame-benchmarking-cli = { workspace = true }
[dev-dependencies]
nix = { workspace = true }
prometheus = { workspace = true }
rand = { workspace = true }
sc-block-builder = { workspace = true }
tempfile = { workspace = true }
# Polkadot dev-dependencies
polkadot-runtime-common = { workspace = true }
# Substrate dev-dependencies
pallet-sudo = { workspace = true, features = ["std"] }
substrate-test-client = { workspace = true }
substrate-test-runtime = { workspace = true }
substrate-test-runtime-client = { workspace = true }
[build-dependencies]
substrate-build-script-utils = { workspace = true }
[features]
default = [
"moonbase-native",
"moonbeam-native",
"moonriver-native",
"rococo-native",
"westend-native",
]
rococo-native = ["polkadot-cli/rococo-native", "polkadot-service/rococo-native"]
westend-native = [
"polkadot-cli/westend-native",
"polkadot-service/westend-native",
]
moonbase-native = ["moonbase-runtime", "westend-native"]
moonbeam-native = ["moonbeam-runtime"]
moonriver-native = ["moonriver-runtime"]
test-spec = []
runtime-benchmarks = [
"moonbase-native",
"moonbase-runtime/runtime-benchmarks",
"moonbeam-native",
"moonbeam-runtime/runtime-benchmarks",
"moonriver-native",
"moonriver-runtime/runtime-benchmarks",
"pallet-ethereum/runtime-benchmarks",
]
try-runtime = ["moonbase-runtime", "moonbase-runtime/try-runtime"]
moonbase-runtime-benchmarks = [
"moonbase-native",
"moonbase-runtime/moonbase-runtime-benchmarks",
"moonbase-runtime/runtime-benchmarks",
"pallet-ethereum/runtime-benchmarks",
]