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

[dependencies]
8
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
9
10
11
12
13
parity-scale-codec = { version = "1.3.5", default-features = false, features = ["derive"] }
log = { version = "0.4.11", optional = true }
rustc-hex = { version = "2.1.0", default-features = false }
serde = { version = "1.0.117", default-features = false }
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
42

[dev-dependencies]
43
hex-literal = "0.3.1"
44
45
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
46
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
47
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
48
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master" }
49
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
50
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" }
51
52
53
trie-db = "0.22.1"
serde_json = "1.0.59"
libsecp256k1 = "0.3.5"
54
55

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