[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/Substrate compatible library to construct binary merkle tree." homepage = "https://substrate.io" [lints] workspace = true [dependencies] array-bytes = { version = "6.1", optional = true } log = { optional = true, workspace = true } hash-db = { version = "0.16.0", default-features = false } [dev-dependencies] array-bytes = "6.1" env_logger = "0.11" sp-core = { path = "../../primitives/core" } sp-runtime = { path = "../../primitives/runtime" } [features] debug = ["array-bytes", "log"] default = ["debug", "std"] std = ["hash-db/std", "log/std", "sp-core/std", "sp-runtime/std"]