Cargo.toml 2.06 KB
Newer Older
Gav's avatar
Gav committed
1
2
[package]
name = "polkadot-primitives"
André Silva's avatar
André Silva committed
3
version = "0.7.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
9
serde = { version = "1.0.102", optional = true, features = ["derive"] }
parity-scale-codec = { version = "1.1.0", default-features = false, features = ["bit-vec", "derive"] }
10
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
11
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gavin Wood's avatar
Gavin Wood committed
12
application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
13
14
15
16
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
rstd = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
17
polkadot-parachain = { path = "../parachain", default-features = false }
18
trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
19
bitvec = { version = "0.15.2", default-features = false, features = ["alloc"] }
20
babe = { package = "pallet-babe", git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
Gav's avatar
Gav committed
21
22

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

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