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
50 lines
1.7 KiB
TOML
50 lines
1.7 KiB
TOML
[package]
|
|
description = "Bizinikiwi client utilities for frame runtime functions calls."
|
|
name = "pezsc-runtime-utilities"
|
|
version = "0.1.0"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, default-features = true }
|
|
|
|
pezsc-executor = { workspace = true, default-features = true }
|
|
pezsc-executor-common = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-crypto-hashing = { workspace = true, default-features = true }
|
|
pezsp-state-machine = { workspace = true, default-features = true }
|
|
pezsp-wasm-interface = { workspace = true, default-features = true }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezcumulus-primitives-proof-size-hostfunction = { workspace = true, default-features = true }
|
|
pezcumulus-test-runtime = { workspace = true, default-features = true }
|
|
pezkuwi-subxt = { workspace = true, features = ["native"] }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-version = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezcumulus-primitives-proof-size-hostfunction/runtime-benchmarks",
|
|
"pezcumulus-test-runtime/runtime-benchmarks",
|
|
"pezkuwi-subxt/runtime-benchmarks",
|
|
"pezsc-executor/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-state-machine/runtime-benchmarks",
|
|
"pezsp-version/runtime-benchmarks",
|
|
]
|
|
std = ["pezkuwi-subxt/std", "pezsc-executor-common/std"]
|
|
serde = []
|
|
with-tracing = []
|