479010094e
- 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)
25 lines
686 B
TOML
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" ]
|