31 lines
673 B
TOML
31 lines
673 B
TOML
[package]
|
|
name = "sp-block-builder"
|
|
version = "26.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "The block builder runtime api."
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-api = { workspace = true }
|
|
sp-inherents = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["sp-api/std", "sp-inherents/std", "sp-runtime/std"]
|
|
runtime-benchmarks = [
|
|
"sp-api/runtime-benchmarks",
|
|
"sp-inherents/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
]
|