bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
43 lines
961 B
TOML
43 lines
961 B
TOML
[package]
|
|
name = "pezpallet-mmr"
|
|
version = "27.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "FRAME Merkle Mountain Range pezpallet."
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
frame = { workspace = true, features = ["runtime"] }
|
|
log = { workspace = true }
|
|
pezsp-mmr-primitives = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
itertools = { workspace = true }
|
|
pezsp-tracing = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"frame/std",
|
|
"log/std",
|
|
"pezsp-mmr-primitives/std",
|
|
"scale-info/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame/runtime-benchmarks",
|
|
"pezsp-mmr-primitives/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["frame/try-runtime"]
|