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

[dependencies]
8
serde = { version = "1.0", optional = true, features = ["derive"] }
Gavin Wood's avatar
Gavin Wood committed
9
parity-codec = { version = "4.1", default-features = false }
10
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
11
12
substrate-client = { 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" }
13
14
rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
runtime_primitives = { package = "sr-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
15
polkadot-parachain = { path = "../parachain", default-features = false }
Gav's avatar
Gav committed
16
17

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

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