Cargo.toml 7.15 KB
Newer Older
Gav's avatar
Gav committed
1
2
[package]
name = "polkadot-runtime"
Gavin Wood's avatar
Gavin Wood committed
3
version = "0.6.0"
Gav's avatar
Gav committed
4
authors = ["Parity Technologies <admin@parity.io>"]
5
edition = "2018"
6
build = "build.rs"
Gav's avatar
Gav committed
7
8

[dependencies]
9
bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] }
Gavin Wood's avatar
Gavin Wood committed
10
codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] }
Gav's avatar
Gav committed
11
log = { version = "0.3", optional = true }
Gavin Wood's avatar
Gavin Wood committed
12
13
rustc-hex = { version = "2.0.1", default-features = false }
safe-mix = { version = "1.0", default-features = false}
14
serde = { version = "1.0", default-features = false }
15
serde_derive = { version = "1.0", optional = true }
Gavin Wood's avatar
Gavin Wood committed
16

17
authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
18
19
20
21
22
23
24
25
26
27
28
29
babe-primitives = { package = "substrate-consensus-babe-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
inherents = { package = "substrate-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
offchain-primitives = { package = "substrate-offchain-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
sr-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
sr-staking-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
substrate-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
version = { package = "sr-version", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
30

31
authority-discovery = { package = "srml-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
32
33
34
35
36
37
38
39
40
41
42
43
44
authorship = { package = "srml-authorship", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
balances = { package = "srml-balances", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
collective = { package = "srml-collective", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
democracy = { package = "srml-democracy", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
elections = { package = "srml-elections", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
executive = { package = "srml-executive", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
finality-tracker = { package = "srml-finality-tracker", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
grandpa = { package = "srml-grandpa", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
im-online = { package = "srml-im-online", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
indices = { package = "srml-indices", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
membership = { package = "srml-membership", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
offences = { package = "srml-offences", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Ashley's avatar
Ashley committed
45
randomness-collective-flip = { package = "srml-randomness-collective-flip", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
46
47
48
session = { package = "srml-session", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
staking = { package = "srml-staking", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
thiolliere's avatar
thiolliere committed
49
srml-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
50
51
52
53
sudo = { package = "srml-sudo", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
system = { package = "srml-system", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
timestamp = { package = "srml-timestamp", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
treasury = { package = "srml-treasury", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
54

55
primitives = { package = "polkadot-primitives", path = "../primitives", default-features = false }
56
polkadot-parachain = { path = "../parachain", default-features = false }
57

58
[dev-dependencies]
59
hex-literal = "0.2.0"
60
61
libsecp256k1 = "0.2.1"
tiny-keccak = "1.4.2"
Gavin Wood's avatar
Gavin Wood committed
62
63
keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
64
trie-db = "0.15"
65
serde_json = "1.0"
66
67

[build-dependencies]
68
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.3" }
69

Gav's avatar
Gav committed
70
71
[features]
default = ["std"]
72
no_std = []
73
only-staking = []
Gav's avatar
Gav committed
74
std = [
75
76
	"authority-discovery-primitives/std",
	"authority-discovery/std",
77
	"bitvec/std",
78
	"primitives/std",
79
	"rustc-hex/std",
80
	"codec/std",
81
	"inherents/std",
82
	"substrate-primitives/std",
83
	"polkadot-parachain/std",
84
	"client/std",
85
	"offchain-primitives/std",
86
	"rstd/std",
87
88
	"sr-io/std",
	"srml-support/std",
Gavin Wood's avatar
Gavin Wood committed
89
	"authorship/std",
90
	"balances/std",
91
92
	"collective/std",
	"elections/std",
93
94
	"democracy/std",
	"executive/std",
Gavin Wood's avatar
Gavin Wood committed
95
	"finality-tracker/std",
96
	"grandpa/std",
97
	"im-online/std",
98
	"indices/std",
99
	"membership/std",
100
	"offences/std",
101
	"sr-primitives/std",
102
	"sr-staking-primitives/std",
103
104
105
106
107
108
109
	"session/std",
	"staking/std",
	"sudo/std",
	"system/std",
	"timestamp/std",
	"treasury/std",
	"version/std",
110
111
112
	"serde_derive",
	"serde/std",
	"log",
113
	"safe-mix/std",
114
115
	"babe/std",
	"babe-primitives/std",
116
	"substrate-session/std",
117
	"randomness-collective-flip/std",
Gav's avatar
Gav committed
118
]