Cargo.toml 2.28 KB
Newer Older
Gav's avatar
Gav committed
1
2
3
4
5
6
7
8
[package]
name = "polkadot-runtime"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]

[dependencies]
rustc-hex = "1.0"
log = { version = "0.3", optional = true }
9
10
serde = { version = "1.0", default_features = false }
serde_derive = { version = "1.0", optional = true }
Gav Wood's avatar
Gav Wood committed
11
safe-mix = { version = "1.0", default_features = false}
Gav Wood's avatar
Gav Wood committed
12
polkadot-primitives = { path = "../primitives", default_features = false }
13
14
parity-codec = { git = "https://github.com/paritytech/substrate" }
parity-codec-derive = { git = "https://github.com/paritytech/substrate" }
Gav's avatar
Gav committed
15
substrate-serializer = { git = "https://github.com/paritytech/substrate" }
16
17
18
sr-std = { git = "https://github.com/paritytech/substrate" }
sr-io = { git = "https://github.com/paritytech/substrate" }
srml-support = { git = "https://github.com/paritytech/substrate" }
Gav's avatar
Gav committed
19
20
substrate-primitives = { git = "https://github.com/paritytech/substrate" }
substrate-keyring = { git = "https://github.com/paritytech/substrate" }
21
22
23
24
25
26
27
28
29
30
31
32
srml-balances = { git = "https://github.com/paritytech/substrate" }
srml-consensus = { git = "https://github.com/paritytech/substrate" }
srml-council = { git = "https://github.com/paritytech/substrate" }
srml-democracy = { git = "https://github.com/paritytech/substrate" }
srml-executive = { git = "https://github.com/paritytech/substrate" }
sr-primitives = { git = "https://github.com/paritytech/substrate" }
srml-session = { git = "https://github.com/paritytech/substrate" }
srml-staking = { git = "https://github.com/paritytech/substrate" }
srml-system = { git = "https://github.com/paritytech/substrate" }
srml-timestamp = { git = "https://github.com/paritytech/substrate" }
srml-treasury = { git = "https://github.com/paritytech/substrate" }
sr-version = { git = "https://github.com/paritytech/substrate" }
33

34
35
36
[dev-dependencies]
hex-literal = "0.1.0"

Gav's avatar
Gav committed
37
38
39
[features]
default = ["std"]
std = [
Gav Wood's avatar
Gav Wood committed
40
	"polkadot-primitives/std",
41
42
	"parity-codec/std",
	"parity-codec-derive/std",
43
	"substrate-primitives/std",
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
	"sr-std/std",
	"sr-io/std",
	"srml-support/std",
	"srml-balances/std",
	"srml-consensus/std",
	"srml-council/std",
	"srml-democracy/std",
	"srml-executive/std",
	"sr-primitives/std",
	"srml-session/std",
	"srml-staking/std",
	"srml-system/std",
	"srml-timestamp/std",
	"srml-treasury/std",
	"sr-version/std",
59
60
61
62
	"serde_derive",
	"serde/std",
	"log",
	"safe-mix/std"
Gav's avatar
Gav committed
63
]