Files
pezkuwi-sdk/bizinikiwi/pezframe/contracts/fixtures/Cargo.toml
T
pezkuwichain 267fcec12d fix: quick-checks CI failures - taplo format, zepter, umbrella
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
2026-01-26 00:39:59 +03:00

38 lines
1.0 KiB
TOML

[package]
name = "pezpallet-contracts-fixtures"
publish = true
version = "1.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
description = "Fixtures for testing contracts pezpallet."
documentation.workspace = true
repository = { workspace = true }
homepage = { workspace = true }
include = ["Cargo.toml", "build.rs", "contracts/**", "src/**"]
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true, default-features = true }
pezframe-system = { workspace = true, default-features = true }
pezsp-runtime = { workspace = true, default-features = true }
[build-dependencies]
anyhow = { workspace = true, default-features = true }
parity-wasm = { workspace = true }
tempfile = { workspace = true }
toml = { workspace = true }
twox-hash = { workspace = true, default-features = true }
[features]
runtime-benchmarks = [
"pezframe-system/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = []
try-runtime = ["pezframe-system/try-runtime", "pezsp-runtime/try-runtime"]
serde = []
experimental = []