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

[dependencies]
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
9
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
10
log = "0.4.11"
11
rustc-hex = { version = "2.0.1", default-features = false }
12
serde = { version = "1.0.102", features = [ "derive" ], optional = true }
13
14
15
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 }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
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 }
22
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
23

24
pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
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
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 }
34
35
36
37
38
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }

primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
libsecp256k1 = { version = "0.3.2", default-features = false, optional = true }

asynchronous rob's avatar
asynchronous rob committed
39
40
41
rand = { version = "0.7", default-features = false }
rand_chacha = { version = "0.2.2", default-features = false }

42
[dev-dependencies]
43
futures = "0.3.4"
44
45
46
hex-literal = "0.2.1"
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
47
pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
48
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
49
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master" }
50
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" }
51
pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" }
52
53
serde_json = "1.0.41"
libsecp256k1 = "0.3.2"
54
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
55
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master"}
56

57
58
59
60
61
62
63
64

[features]
default = ["std"]
no_std = []
std = [
	"bitvec/std",
	"codec/std",
	"rustc-hex/std",
65
	"serde",
66
67
68
69
	"primitives/std",
	"inherents/std",
	"sp-core/std",
	"sp-api/std",
70
	"sp-keystore",
71
72
73
	"sp-std/std",
	"sp-io/std",
	"frame-support/std",
74
75
	"pallet-authorship/std",
	"pallet-balances/std",
76
77
78
	"sp-runtime/std",
	"sp-session/std",
	"sp-staking/std",
79
80
81
82
83
	"pallet-session/std",
	"pallet-staking/std",
	"frame-system/std",
	"pallet-timestamp/std",
	"pallet-vesting/std",
84
85
86
87
88
]
runtime-benchmarks = [
	"libsecp256k1/hmac",
	"frame-benchmarking",
	"frame-support/runtime-benchmarks",
89
	"frame-system/runtime-benchmarks",
90
]