-
Notifications
You must be signed in to change notification settings - Fork 358
/
Copy pathCargo.toml
68 lines (57 loc) · 2.02 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
[package]
name = "moonbeam-cli"
authors = { workspace = true }
edition = "2021"
version = "0.37.0"
[dependencies]
clap = { workspace = true, features = ["derive"] }
log = { workspace = true }
parity-scale-codec = { workspace = true }
# Moonbeam
moonbeam-cli-opt = { workspace = true }
moonbeam-service = { workspace = true }
# Substrate
frame-benchmarking-cli = { workspace = true }
sc-chain-spec = { workspace = true }
sc-cli = { workspace = true }
sc-client-api = { workspace = true }
sc-consensus-grandpa = { workspace = true }
sc-service = { workspace = true }
sc-sysinfo = { workspace = true }
sc-telemetry = { workspace = true }
sc-tracing = { workspace = true }
sp-core = { workspace = true, features = ["std"] }
sp-io = { workspace = true }
sp-runtime = { workspace = true, features = ["std"] }
sp-wasm-interface = { workspace = true }
substrate-prometheus-endpoint = { workspace = true }
try-runtime-cli = { workspace = true, optional = true }
# Cumulus / Nimbus
cumulus-client-cli = { workspace = true }
cumulus-client-service = { workspace = true }
cumulus-primitives-core = { workspace = true, features = ["std"] }
nimbus-primitives = { workspace = true, features = ["std"] }
# Polkadot
polkadot-cli = { workspace = true }
polkadot-parachain = { workspace = true, features = ["std"] }
polkadot-primitives = { workspace = true }
polkadot-service = { workspace = true }
[build-dependencies]
substrate-build-script-utils = { workspace = true }
[features]
default = [
"moonbase-native",
"moonbeam-native",
"moonriver-native",
"westend-native",
]
westend-native = ["polkadot-service/westend-native"]
moonbase-native = ["moonbeam-service/moonbase-native", "westend-native"]
moonbeam-native = ["moonbeam-service/moonbeam-native"]
moonriver-native = ["moonbeam-service/moonriver-native"]
runtime-benchmarks = [
"moonbeam-service/runtime-benchmarks",
"polkadot-service/runtime-benchmarks",
]
try-runtime = ["moonbeam-service/try-runtime", "try-runtime-cli/try-runtime"]
moonbase-runtime-benchmarks = ["moonbeam-service/moonbase-runtime-benchmarks"]