267fcec12d
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "pezframe-storage-access-test-runtime"
|
|
description = "A runtime for testing storage access on block validation"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
build = "build.rs"
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
publish = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
# pezcumulus-pezpallet-teyrchain-system moved to integration tests to break circular dependency
|
|
pezsp-core = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-state-machine = { workspace = true }
|
|
pezsp-trie = { workspace = true }
|
|
|
|
# bizinikiwi-wasm-builder moved to integration tests to break circular dependency
|
|
[build-dependencies]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
no_std = []
|
|
std = [
|
|
"codec/std",
|
|
"pezsp-core/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-state-machine/std",
|
|
"pezsp-trie/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-state-machine/runtime-benchmarks",
|
|
"pezsp-trie/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["pezsp-runtime/try-runtime"]
|
|
serde = []
|