Files
pezkuwi-subxt/substrate/utils/binary-merkle-tree/Cargo.toml
T
Serban Iorga 8e95a3e1aa Align dependencies with parity-bridges-common (#3937)
Working towards migrating the `parity-bridges-common` repo inside
`polkadot-sdk`. This PR upgrades some dependencies in order to align
them with the versions used in `parity-bridges-common`

Related to
https://github.com/paritytech/parity-bridges-common/issues/2538
2024-04-02 13:41:01 +00:00

29 lines
767 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 = { 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"]