Cargo.toml 1.8 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"] }
9
parity-scale-codec = { version = "1.0.5", default-features = false, features = ["bit-vec", "derive"] }
10
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
11
application-crypto = { package = "substrate-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
12
13
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" }
14
15
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" }
16
polkadot-parachain = { path = "../parachain", default-features = false }
17
18
bitvec = { version = "0.14.0", default-features = false, features = ["alloc"] }
babe = { package = "srml-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gav's avatar
Gav committed
19
20

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

[features]
default = ["std"]
std = [
27
	"parity-scale-codec/std",
28
	"primitives/std",
29
	"substrate-client/std",
30
	"rstd/std",
31
	"sr-version/std",
32
	"runtime_primitives/std",
33
34
	"serde",
	"polkadot-parachain/std",
35
36
	"bitvec/std",
	"babe/std"
Gav's avatar
Gav committed
37
]