Cargo.toml 2.58 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 }
Gav's avatar
Gav committed
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
substrate-codec = { git = "https://github.com/paritytech/substrate" }
substrate-codec-derive = { git = "https://github.com/paritytech/substrate" }
substrate-serializer = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-std = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-io = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-support = { git = "https://github.com/paritytech/substrate" }
substrate-primitives = { git = "https://github.com/paritytech/substrate" }
substrate-keyring = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-balances = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-consensus = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-council = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-democracy = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-executive = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-session = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-staking = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-system = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-timestamp = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-version = { git = "https://github.com/paritytech/substrate" }
32

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

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