Files
pezkuwi-subxt/substrate/utils/binary-merkle-tree/Cargo.toml
T
alvicsam f441a5fc93 Diener workspacify
Signed-off-by: alvicsam <alvicsam@gmail.com>
2023-08-25 11:05:17 +02:00

26 lines
820 B
TOML

[package]
name = "binary-merkle-tree"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/paritytech/substrate"
description = "A no-std/Substrate compatible library to construct binary merkle tree."
homepage = "https://substrate.io"
[dependencies]
array-bytes = { version = "6.1", optional = true }
log = { version = "0.4", default-features = false, optional = true }
hash-db = { version = "0.16.0", default-features = false }
[dev-dependencies]
array-bytes = "6.1"
env_logger = "0.9"
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" ]