-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCargo.toml
63 lines (57 loc) · 2.84 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
[package]
authors = ["KILT <info@kilt.io>"]
description = "Parachain parachain-staking pallet for collator delegation and selection as well as reward distribution"
edition = "2021"
name = "parachain-staking"
version = "1.4.0"
[dev-dependencies]
pallet-aura = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
pallet-timestamp = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
sp-consensus-aura = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
sp-core = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
sp-io = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
[dependencies]
hex-literal = "0.3.4"
log = "0.4"
parity-scale-codec = {version = "2.3.1", default-features = false, features = ["derive"]}
scale-info = {version = "1.0", default-features = false, features = ["derive"]}
serde = {version = "1.0.124", optional = true}
kilt-support = {default-features = false, path = "../../support"}
runtime-common = {path = "../../runtimes/common", default-features = false}
frame-support = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
frame-system = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
pallet-authorship = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
pallet-balances = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
pallet-session = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
sp-runtime = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
sp-staking = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
sp-std = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false}
# benchmarking
frame-benchmarking = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.13", default-features = false, optional = true}
[features]
default = ["std"]
runtime-benchmarks = [
"frame-benchmarking",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
]
std = [
"frame-support/std",
"frame-system/std",
"runtime-common/std",
"kilt-support/std",
"log/std",
"pallet-authorship/std",
"pallet-balances/std",
"pallet-session/std",
"parity-scale-codec/std",
"scale-info/std",
"serde",
"sp-runtime/std",
"sp-staking/std",
"sp-std/std",
]
try-runtime = [
"frame-support/try-runtime",
"kilt-support/try-runtime",
]