-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCargo.toml
121 lines (108 loc) · 6.39 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
[package]
authors = ["KILT <info@kilt.io>"]
build = "build.rs"
description = "KILT parachain"
edition = "2018"
name = "kilt-parachain"
version = "0.26.0"
[[bin]]
name = "kilt-parachain"
path = "src/main.rs"
[dependencies]
# Internal dependencies
kilt-primitives = {path = "../../primitives"}
peregrine-runtime = {path = "../../runtimes/peregrine"}
spiritnet-runtime = {path = "../../runtimes/spiritnet"}
# External dependencies
codec = {package = "parity-scale-codec", version = "2.0.0"}
derive_more = "0.15.0"
exit-future = "0.1.4"
futures = {version = "0.3.1", features = ["compat"]}
hex-literal = "0.2.1"
log = "0.4.13"
parking_lot = "0.9.0"
serde = {version = "1.0.119", features = ["derive"]}
serde_json = "1.0.64"
structopt = "0.3.3"
trie-root = "0.15.2"
# Substrate dependencies
sc-basic-authorship = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-chain-spec = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-cli = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-client-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-consensus = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-executor = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-finality-grandpa = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-network = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-service = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-telemetry = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-tracing = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-transaction-pool = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-transaction-pool-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-block-builder = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-blockchain = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-consensus = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-consensus-aura = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-core = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-inherents = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-io = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-keystore = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-offchain = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-runtime = {git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.9"}
sp-session = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-timestamp = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-transaction-pool = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-trie = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
substrate-prometheus-endpoint = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
# RPC related dependencies
frame-rpc-system = {package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
jsonrpc-core = "15.1.0"
pallet-transaction-payment-rpc = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-rpc = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sc-rpc-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
sp-api = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
# Cumulus dependencies
cumulus-client-cli = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-client-collator = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-client-consensus-aura = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-client-consensus-common = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-client-consensus-relay-chain = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-client-network = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-client-service = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-primitives-core = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
cumulus-primitives-parachain-inherent = {git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.9"}
# Polkadot dependencies
polkadot-cli = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9"}
polkadot-parachain = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9"}
polkadot-primitives = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9"}
polkadot-service = {git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9"}
# Benchmarking
frame-benchmarking = {git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.9"}
frame-benchmarking-cli = {git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.9"}
# Runtime tests
node-executor = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", optional = true}
try-runtime-cli = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9", optional = true}
[build-dependencies]
substrate-build-script-utils = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}
[features]
default = []
fast-gov = ["peregrine-runtime/fast-gov", "kilt-primitives/fast-gov"]
rococo-native=[
"polkadot-service/rococo-native",
"polkadot-cli/rococo-native",
]
runtime-benchmarks = [
"polkadot-service/runtime-benchmarks",
"peregrine-runtime/runtime-benchmarks",
"spiritnet-runtime/runtime-benchmarks",
]
try-runtime = [
"peregrine-runtime/try-runtime",
"node-executor",
"spiritnet-runtime/try-runtime",
"try-runtime-cli",
]
westend-native=[
"polkadot-service/westend-native",
"polkadot-cli/westend-native",
]