mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
04fcc71809
* primitives/sr-primitives -> primitives/runtime * update
22 lines
709 B
TOML
22 lines
709 B
TOML
[package]
|
|
name = "substrate-test-primitives"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
app-crypto = { package = "sc-application-crypto", path = "../../../primitives/application-crypto", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
primitives = { package = "sp-core", path = "../../../primitives/core", default-features = false }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
sp-runtime = { path = "../../../primitives/runtime", default-features = false }
|
|
|
|
[features]
|
|
default = [
|
|
"std",
|
|
]
|
|
std = [
|
|
"app-crypto/std",
|
|
"serde",
|
|
]
|