mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 16:21:02 +00:00
045ef86f12
* rename some crates for publishing to crates.io * s/remote-ext/frame-remote-externalities
31 lines
984 B
TOML
31 lines
984 B
TOML
[package]
|
|
name = "beefy-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 = "4.1", optional = true }
|
|
log = { version = "0.4", default-features = false, optional = true }
|
|
|
|
beefy-primitives = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/beefy", package = "sp-beefy" }
|
|
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
|
|
sp-runtime = { version = "7.0.0", default-features = false, path = "../../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
array-bytes = "4.1"
|
|
env_logger = "0.9"
|
|
|
|
[features]
|
|
debug = ["array-bytes", "log"]
|
|
default = ["debug", "std"]
|
|
std = [
|
|
"beefy-primitives/std",
|
|
"sp-api/std",
|
|
"sp-runtime/std"
|
|
]
|