Cargo.toml 787 Bytes
Newer Older
1
2
[package]
name = "polkadot-core-primitives"
3
version = "0.9.8"
4
5
6
7
8
9
10
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
11
parity-scale-codec = { version = "2.0.0", default-features = false, features = [ "derive" ] }
12
parity-util-mem = { version = "0.10.0", default-features = false, optional = true }
13
14
15
16
17
18
19

[features]
default = [ "std" ]
std = [
	"sp-core/std",
	"sp-runtime/std",
	"sp-std/std",
20
	"parity-scale-codec/std",
21
	"parity-util-mem",
22
]