56 lines
1.6 KiB
TOML
56 lines
1.6 KiB
TOML
[package]
|
|
name = "frame-metadata-hash-extension"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "FRAME signed extension for verifying the metadata hash"
|
|
|
|
[dependencies]
|
|
array-bytes = { workspace = true, default-features = true }
|
|
codec = { features = ["derive"], workspace = true }
|
|
const-hex = { workspace = true }
|
|
docify = { workspace = true }
|
|
frame-support = { workspace = true }
|
|
frame-system = { workspace = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive", "serde"], workspace = true }
|
|
sp-runtime = { features = ["serde"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
frame-metadata = { features = [
|
|
"current",
|
|
"unstable",
|
|
], workspace = true, default-features = true }
|
|
merkleized-metadata = { workspace = true }
|
|
sp-api = { workspace = true, default-features = true }
|
|
sp-tracing = { workspace = true, default-features = true }
|
|
sp-transaction-pool = { workspace = true, default-features = true }
|
|
substrate-test-runtime-client = { workspace = true }
|
|
substrate-wasm-builder = { features = [
|
|
"metadata-hash",
|
|
], workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"const-hex/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"log/std",
|
|
"scale-info/std",
|
|
"sp-runtime/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"sp-api/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-transaction-pool/runtime-benchmarks",
|
|
"substrate-test-runtime-client/runtime-benchmarks",
|
|
"substrate-wasm-builder/runtime-benchmarks",
|
|
]
|