Cargo.toml 5.21 KB
Newer Older
1
2
[package]
name = "polkadot-runtime-common"
3
version = "0.9.9"
4
5
6
7
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
8
impl-trait-for-tuples = "0.2.0"
9
10
bitvec = { version = "0.20.1", default-features = false, features = ["alloc"] }
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] }
11
log = { version = "0.4.13", default-features = false }
12
rustc-hex = { version = "2.1.0", default-features = false }
13
serde = { version = "1.0.130", default-features = false }
14
serde_derive = { version = "1.0.117", optional = true }
15
static_assertions = "1.1.0"
16

17
18
19
20
21
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
22
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
23
24
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
25

26
27
28
pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
29
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
30
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
Squirrel's avatar
Squirrel committed
31
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
32
33
34
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
35
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
36
pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
37
pallet-beefy-mmr = { git = "https://github.com/paritytech/grandpa-bridge-gadget", branch = "master", default-features = false }
38

39
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
Squirrel's avatar
Squirrel committed
40
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
41
42

primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
43
libsecp256k1 = { version = "0.6.0", default-features = false }
44
runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parachains", default-features = false }
45

46
slot-range-helper = { path = "slot_range_helper", default-features = false }
Shawn Tabrizi's avatar
Shawn Tabrizi committed
47
48
xcm = { path = "../../xcm", default-features = false }

49
[dev-dependencies]
50
hex-literal = "0.3.3"
51
frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" }
52
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
53
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" }
54
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
55
serde_json = "1.0.66"
56
libsecp256k1 = "0.6.0"
57
58

[features]
59
default = ["std"]
60
61
62
no_std = []
std = [
	"bitvec/std",
63
	"parity-scale-codec/std",
64
	"log/std",
65
66
67
68
	"rustc-hex/std",
	"serde_derive",
	"serde/std",
	"primitives/std",
69
70
71
	"inherents/std",
	"sp-core/std",
	"sp-api/std",
72
	"sp-std/std",
73
74
	"sp-io/std",
	"frame-support/std",
75
76
	"pallet-authorship/std",
	"pallet-balances/std",
77
	"pallet-beefy-mmr/std",
78
79
80
81
82
	"pallet-session/std",
	"pallet-staking/std",
	"pallet-timestamp/std",
	"pallet-vesting/std",
	"pallet-transaction-payment/std",
83
	"pallet-treasury/std",
84
	"pallet-election-provider-multi-phase/std",
85
	"slot-range-helper/std",
86
87
88
89
	"sp-runtime/std",
	"sp-session/std",
	"sp-staking/std",
	"frame-system/std",
90
	"libsecp256k1/std",
yaanhyy's avatar
yaanhyy committed
91
	"runtime-parachains/std",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
92
	"xcm/std",
93
]
94
runtime-benchmarks = [
95
	"libsecp256k1/hmac",
96
	"libsecp256k1/static-context",
97
	"frame-benchmarking",
André Silva's avatar
André Silva committed
98
	"frame-support/runtime-benchmarks",
99
	"frame-system/runtime-benchmarks",
100
101
	"runtime-parachains/runtime-benchmarks",
	"pallet-babe/runtime-benchmarks",
102
]
103
104
105
106
107
108
109
110
111
112
113
try-runtime = [
	"runtime-parachains/try-runtime",
	"pallet-authorship/try-runtime",
	"pallet-balances/try-runtime",
	"pallet-session/try-runtime",
	"pallet-staking/try-runtime",
	"pallet-timestamp/try-runtime",
	"pallet-vesting/try-runtime",
	"pallet-transaction-payment/try-runtime",
	"pallet-treasury/try-runtime",
]