37 lines
998 B
TOML
37 lines
998 B
TOML
[package]
|
|
name = "binary-merkle-tree"
|
|
version = "13.0.0"
|
|
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 = "https://docs.rs/binary-merkle-tree"
|
|
|
|
[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 }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
debug = ["array-bytes", "log"]
|
|
default = ["debug", "std"]
|
|
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
|
std = [
|
|
"codec/std",
|
|
"hash-db/std",
|
|
"log/std",
|
|
"pezsp-core/std",
|
|
"pezsp-runtime/std",
|
|
]
|