Files
pezkuwi-subxt/substrate/frame/beefy-mmr/primitives/Cargo.toml
T
Bastian Köcher b08d3017a8 Switch to Rust 2021 (#10170)
* Switch to Rust 2021

* Update trybuild to fix errors
2021-11-04 19:54:48 +01:00

24 lines
645 B
TOML

[package]
name = "beefy-merkle-tree"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
description = "A no-std/Substrate compatible library to construct binary merkle tree."
[dependencies]
hex = { version = "0.4", optional = true, default-features = false }
log = { version = "0.4", optional = true, default-features = false }
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", "log"]
default = ["std", "debug", "keccak"]
keccak = ["tiny-keccak"]
std = []