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

[dependencies]
7
bitvec = { version = "0.8", default-features = false, features = ["alloc"] }
8
rustc-hex = { version = "2.0.1", default-features = false }
Gav's avatar
Gav committed
9
log = { version = "0.3", optional = true }
10
serde = { version = "1.0", default-features = false }
11
serde_derive = { version = "1.0", optional = true }
12
13
safe-mix = { version = "1.0", default-features = false}
polkadot-primitives = { path = "../primitives", default-features = false }
14
15
parity-codec = { version = "3.0", default-features = false }
parity-codec-derive = { version = "3.0", default-features = false }
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
substrate-serializer = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
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" }
srml-support = { 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-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
substrate-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
substrate-consensus-aura-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
substrate-offchain-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-consensus = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-council = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-indices = { 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" }
srml-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-staking = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
srml-treasury = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
substrate-consensus-authorities = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
42

43
44
[dev-dependencies]
hex-literal = "0.1.0"
45
46
libsecp256k1 = "0.2.1"
tiny-keccak = "1.4.2"
47
48
substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
substrate-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
49
trie-db = "0.12"
50

Gav's avatar
Gav committed
51
52
53
[features]
default = ["std"]
std = [
54
	"bitvec/std",
Gav Wood's avatar
Gav Wood committed
55
	"polkadot-primitives/std",
56
	"rustc-hex/std",
57
58
	"parity-codec/std",
	"parity-codec-derive/std",
59
	"substrate-inherents/std",
60
	"substrate-primitives/std",
61
62
	"substrate-client/std",
	"substrate-inherents/std",
63
	"substrate-offchain-primitives/std",
64
65
66
67
68
69
70
71
	"sr-std/std",
	"sr-io/std",
	"srml-support/std",
	"srml-balances/std",
	"srml-consensus/std",
	"srml-council/std",
	"srml-democracy/std",
	"srml-executive/std",
72
	"srml-grandpa/std",
Gav Wood's avatar
Gav Wood committed
73
	"srml-indices/std",
74
75
76
	"sr-primitives/std",
	"srml-session/std",
	"srml-staking/std",
Gav Wood's avatar
Gav Wood committed
77
	"srml-sudo/std",
78
79
80
81
	"srml-system/std",
	"srml-timestamp/std",
	"srml-treasury/std",
	"sr-version/std",
82
83
84
	"serde_derive",
	"serde/std",
	"log",
85
86
	"safe-mix/std",
	"substrate-consensus-authorities/std"
Gav's avatar
Gav committed
87
]