Files
pezkuwi-sdk/pezkuwi/core-primitives/Cargo.toml
T
pezkuwichain 479010094e fix(ci): resolve all quick-checks failures
- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
2026-01-04 17:22:12 +03:00

25 lines
686 B
TOML

[package]
name = "pezkuwi-core-primitives"
version = "7.0.0"
description = "Core Pezkuwi types used by Relay Chains and teyrchains."
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
[lints]
workspace = true
[dependencies]
codec = { features = ["derive"], workspace = true }
pezsp-core = { workspace = true }
pezsp-runtime = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
[features]
default = [ "std" ]
std = [ "codec/std", "pezsp-core/std", "pezsp-runtime/std", "scale-info/std" ]
runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks" ]