mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 01:47:55 +00:00
8e95a3e1aa
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
29 lines
767 B
TOML
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"]
|