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

[dependencies]
8
serde = { version = "1.0.102", optional = true, features = ["derive"] }
9
parity-scale-codec = { version = "1.3.0", default-features = false, features = ["bit-vec", "derive"] }
Ashley Ruglys's avatar
Ashley Ruglys committed
10
11
12
13
14
15
16
17
18
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
system = { package = "frame-system", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
19
polkadot-parachain = { path = "../parachain", default-features = false }
Ashley Ruglys's avatar
Ashley Ruglys committed
20
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
21
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
Gav's avatar
Gav committed
22
23

[dev-dependencies]
Ashley Ruglys's avatar
Ashley Ruglys committed
24
sp-serializer = { git = "https://github.com/paritytech/substrate", branch = "master" }
25
pretty_assertions = "0.5.1"
Gav's avatar
Gav committed
26
27
28
29

[features]
default = ["std"]
std = [
30
	"parity-scale-codec/std",
31
	"primitives/std",
32
	"system/std",
33
	"inherents/std",
34
	"trie/std",
35
	"sp-api/std",
36
	"sp-std/std",
37
	"sp-version/std",
38
	"sp-staking/std",
39
	"runtime_primitives/std",
40
41
	"serde",
	"polkadot-parachain/std",
42
	"bitvec/std",
Gav's avatar
Gav committed
43
]