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

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

16
17
18
19
20
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 }
21
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
22
23
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 }
24

25
26
27
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 }
28
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
29
30
31
32
33
34
pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
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-offences = { 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
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
37
38

primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
39
libsecp256k1 = { version = "0.3.5", default-features = false, optional = true }
40
runtime-parachains = { package = "polkadot-runtime-parachains", path = "../parachains", default-features = false }
41

Shawn Tabrizi's avatar
Shawn Tabrizi committed
42
43
xcm = { path = "../../xcm", default-features = false }

44
[dev-dependencies]
45
hex-literal = "0.3.1"
46
47
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
48
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
49
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
50
sp-election-providers = { git = "https://github.com/paritytech/substrate", branch = "master" }
51
frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" }
52
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master" }
53
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
54
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" }
55
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
56
trie-db = "0.22.3"
57
serde_json = "1.0.61"
58
libsecp256k1 = "0.3.5"
59
60

[features]
61
default = ["std"]
62
63
64
no_std = []
std = [
	"bitvec/std",
65
	"parity-scale-codec/std",
66
67
68
69
70
	"log",
	"rustc-hex/std",
	"serde_derive",
	"serde/std",
	"primitives/std",
71
72
73
	"inherents/std",
	"sp-core/std",
	"sp-api/std",
74
	"sp-std/std",
75
76
	"sp-io/std",
	"frame-support/std",
77
78
	"pallet-authorship/std",
	"pallet-balances/std",
79
	"sp-runtime/std",
80
	"sp-session/std",
81
	"sp-staking/std",
82
83
84
85
86
87
	"pallet-session/std",
	"pallet-staking/std",
	"frame-system/std",
	"pallet-timestamp/std",
	"pallet-vesting/std",
	"pallet-transaction-payment/std",
yaanhyy's avatar
yaanhyy committed
88
	"runtime-parachains/std",
Shawn Tabrizi's avatar
Shawn Tabrizi committed
89
	"xcm/std",
90
]
91
runtime-benchmarks = [
92
	"libsecp256k1/hmac",
93
	"frame-benchmarking",
André Silva's avatar
André Silva committed
94
	"frame-support/runtime-benchmarks",
95
	"frame-system/runtime-benchmarks",
96
]