Files
pezkuwi-sdk/substrate/frame/try-runtime/Cargo.toml
T

32 lines
828 B
TOML

[package]
name = "frame-try-runtime"
version = "0.34.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "Supporting types for try-runtime, testing and dry-running commands."
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { features = ["derive"], workspace = true }
frame-support = { workspace = true }
sp-api = { workspace = true }
sp-runtime = { workspace = true }
[features]
default = ["std"]
std = ["codec/std", "frame-support/std", "sp-api/std", "sp-runtime/std"]
try-runtime = ["frame-support/try-runtime", "sp-runtime/try-runtime"]
runtime-benchmarks = [
"frame-support/runtime-benchmarks",
"sp-api/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]