Files
pezkuwi-sdk/substrate/client/executor/runtime-test/Cargo.toml
T

42 lines
978 B
TOML

[package]
name = "sc-runtime-test"
version = "2.0.0"
authors.workspace = true
edition.workspace = true
build = "build.rs"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
publish = false
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { workspace = true }
sp-io = { features = ["improved_panic_error_reporting"], workspace = true }
sp-runtime = { workspace = true }
sp-runtime-interface = { workspace = true }
[build-dependencies]
substrate-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
std = [
"sp-core/std",
"sp-io/std",
"sp-runtime-interface/std",
"sp-runtime/std",
"substrate-wasm-builder",
]
runtime-benchmarks = [
"sp-io/runtime-benchmarks",
"sp-runtime-interface/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"substrate-wasm-builder?/runtime-benchmarks",
]