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

[dependencies]
7
serde = { version = "1.0", optional = true }
Gav's avatar
Gav committed
8
serde_derive = { version = "1.0", optional = true }
9
10
parity-codec = { version = "3.0", default-features = false }
parity-codec-derive = { version = "3.0", default-features = false }
thiolliere's avatar
thiolliere committed
11
12
13
14
15
substrate-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gui-polkadot-master" }
substrate-client = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gui-polkadot-master" }
sr-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gui-polkadot-master" }
sr-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gui-polkadot-master" }
sr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "gui-polkadot-master" }
16
polkadot-parachain = { path = "../parachain", default-features = false }
Gav's avatar
Gav committed
17
18

[dev-dependencies]
thiolliere's avatar
thiolliere committed
19
substrate-serializer = { git = "https://github.com/paritytech/substrate", branch = "gui-polkadot-master" }
20
pretty_assertions = "0.5.1"
Gav's avatar
Gav committed
21
22
23
24

[features]
default = ["std"]
std = [
25
	"parity-codec/std",
26
	"parity-codec-derive/std",
Gav's avatar
Gav committed
27
	"substrate-primitives/std",
28
	"substrate-client/std",
29
	"sr-std/std",
30
	"sr-version/std",
31
	"sr-primitives/std",
Gav's avatar
Gav committed
32
	"serde_derive",
33
34
	"serde",
	"polkadot-parachain/std",
Gav's avatar
Gav committed
35
]