Files
pezkuwi-subxt/substrate/utils/binary-merkle-tree/Cargo.toml
T
Liam Aharon 3717ec3802 Sync Cargo.toml and crates.io versions (#3034)
Related https://github.com/paritytech/polkadot-sdk/issues/3032

---

Using https://github.com/liamaharon/cargo-workspace-version-tools/ 

`cargo run -- sync --path ../polkadot-sdk`

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
2024-01-26 18:14:03 +00:00

29 lines
791 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/Substrate compatible library to construct binary merkle tree."
homepage = "https://substrate.io"
[lints]
workspace = true
[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"]