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
34 lines
838 B
TOML
34 lines
838 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 = []
|