Files
pezkuwi-subxt/substrate/primitives/test-primitives/Cargo.toml
T
Benjamin Kampmann f0cc89a4b0 Break appcrypto dep cycle (#4347)
* move application-crypto tests into seperate crate

* Fix crate name, update script and add docs

* pressing 'save' helps

* remove useless lines

* adding header

* split into actual modules
2019-12-10 22:12:57 +01:00

22 lines
651 B
TOML

[package]
name = "sp-test-primitives"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
app-crypto = { package = "sp-application-crypto", path = "../application-crypto", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
primitives = { package = "sp-core", path = "../core", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-runtime = { path = "../runtime", default-features = false }
[features]
default = [
"std",
]
std = [
"app-crypto/std",
"serde",
]