mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 08:41:02 +00:00
7d5202341b
* basic lint * lint ordering
26 lines
745 B
TOML
26 lines
745 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]
|
|
hex = { version = "0.4", default-features = false, optional = true }
|
|
log = { version = "0.4", default-features = false, optional = true }
|
|
tiny-keccak = { version = "2.0.2", features = ["keccak"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.9"
|
|
hex = "0.4"
|
|
hex-literal = "0.3"
|
|
|
|
[features]
|
|
debug = ["hex", "hex/std", "log"]
|
|
default = ["debug", "keccak", "std"]
|
|
keccak = ["tiny-keccak"]
|
|
std = []
|