Files
pezkuwi-sdk/bizinikiwi/primitives/state-machine/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

60 lines
1.7 KiB
TOML

[package]
name = "pezsp-state-machine"
version = "0.35.0"
authors.workspace = true
description = "Bizinikiwi State Machine"
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
readme = "README.md"
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
arbitrary = { features = ["derive"], optional = true, workspace = true }
codec = { workspace = true }
hash-db = { workspace = true }
log = { workspace = true }
parking_lot = { optional = true, workspace = true, default-features = true }
pezsp-core = { workspace = true }
pezsp-externalities = { workspace = true }
pezsp-panic-handler = { optional = true, workspace = true, default-features = true }
pezsp-trie = { workspace = true }
rand = { optional = true, workspace = true, default-features = true }
smallvec = { workspace = true, default-features = true }
thiserror = { optional = true, workspace = true }
tracing = { optional = true, workspace = true, default-features = true }
trie-db = { workspace = true }
[dev-dependencies]
arbitrary = { features = ["derive"], workspace = true }
array-bytes = { workspace = true, default-features = true }
assert_matches = { workspace = true }
pretty_assertions = { workspace = true }
rand = { workspace = true, default-features = true }
[features]
default = [ "std" ]
fuzzing = [ "arbitrary" ]
std = [
"codec/std",
"hash-db/std",
"log/std",
"parking_lot",
"pezsp-core/std",
"pezsp-externalities/std",
"pezsp-panic-handler",
"pezsp-trie/std",
"rand",
"thiserror",
"tracing",
"trie-db/std",
]
runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks" ]