bd2d665c4e
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
31 lines
843 B
TOML
31 lines
843 B
TOML
[package]
|
|
name = "pez-binary-merkle-tree"
|
|
version = "14.0.1"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
repository.workspace = true
|
|
description = "A no-std/Bizinikiwi compatible library to construct binary merkle tree."
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
array-bytes = { optional = true, workspace = true, default-features = true }
|
|
codec = { workspace = true, features = ["derive"] }
|
|
hash-db = { workspace = true }
|
|
log = { optional = true, workspace = true }
|
|
|
|
[dev-dependencies]
|
|
array-bytes = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
debug = ["array-bytes", "log"]
|
|
default = ["debug", "std"]
|
|
std = ["codec/std", "hash-db/std", "log/std"]
|
|
runtime-benchmarks = []
|
|
serde = []
|