e43cc3d4fb
- Update CRATES_PUBLISH_PLAN.md with Level 0-2 completion status - Fix binary-merkle-tree and related dependencies - Add runtime_logger_tests.rs - Update various Cargo.toml files
62 lines
1.7 KiB
TOML
62 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",
|
|
]
|