mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17:58 +00:00
3717ec3802
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>
29 lines
791 B
TOML
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"]
|