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

[dependencies]
rustc-hex = "1.0"
hex-literal = "0.1.0"
log = { version = "0.3", optional = true }
10
11
12
serde = { version = "1.0", default_features = false }
serde_derive = { version = "1.0", optional = true }
safe-mix = { path = "../../safe-mix", default_features = false}
Gav's avatar
Gav committed
13
substrate-codec = { path = "../../substrate/codec" }
14
substrate-serializer = { path = "../../substrate/serializer" }
Gav's avatar
Gav committed
15
16
substrate-runtime-std = { path = "../../substrate/runtime-std" }
substrate-runtime-io = { path = "../../substrate/runtime-io" }
17
substrate-runtime-support = { path = "../../substrate/runtime-support" }
Gav's avatar
Gav committed
18
substrate-primitives = { path = "../../substrate/primitives" }
19
substrate-keyring = { path = "../../substrate/keyring" }
20
21
22
23
24
25
26
27
28
29
substrate-runtime-consensus = { path = "../../substrate/runtime/consensus" }
substrate-runtime-council = { path = "../../substrate/runtime/council" }
substrate-runtime-democracy = { path = "../../substrate/runtime/democracy" }
substrate-runtime-executive = { path = "../../substrate/runtime/executive" }
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
substrate-runtime-session = { path = "../../substrate/runtime/session" }
substrate-runtime-staking = { path = "../../substrate/runtime/staking" }
substrate-runtime-system = { path = "../../substrate/runtime/system" }
substrate-runtime-timestamp = { path = "../../substrate/runtime/timestamp" }
polkadot-primitives = { path = "../primitives" }
30

Gav's avatar
Gav committed
31
32
33
34
[features]
default = ["std"]
std = [
	"substrate-codec/std",
35
	"substrate-primitives/std",
Gav's avatar
Gav committed
36
37
	"substrate-runtime-std/std",
	"substrate-runtime-io/std",
38
	"substrate-runtime-support/std",
39
40
41
42
43
44
45
46
47
	"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",
Gav's avatar
Gav committed
48
	"polkadot-primitives/std",
49
50
51
52
	"serde_derive",
	"serde/std",
	"log",
	"safe-mix/std"
Gav's avatar
Gav committed
53
]