mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
41 lines
1,011 B
TOML
41 lines
1,011 B
TOML
|
|
[package]
|
||
|
|
authors = { workspace = true }
|
||
|
|
description = "Benchmarking helpers for pallet-session in DataHaven runtimes."
|
||
|
|
edition = { workspace = true }
|
||
|
|
license = { workspace = true }
|
||
|
|
name = "pallet-session-benchmarking"
|
||
|
|
version = { workspace = true }
|
||
|
|
|
||
|
|
[package.metadata.docs.rs]
|
||
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
codec = { workspace = true }
|
||
|
|
frame-benchmarking = { workspace = true, optional = true }
|
||
|
|
frame-support = { workspace = true }
|
||
|
|
frame-system = { workspace = true }
|
||
|
|
pallet-session = { workspace = true }
|
||
|
|
sp-runtime = { workspace = true }
|
||
|
|
sp-std = { workspace = true }
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["std"]
|
||
|
|
std = [
|
||
|
|
"codec/std",
|
||
|
|
"frame-benchmarking?/std",
|
||
|
|
"frame-support/std",
|
||
|
|
"frame-system/std",
|
||
|
|
"pallet-session/std",
|
||
|
|
"sp-runtime/std",
|
||
|
|
"sp-std/std",
|
||
|
|
]
|
||
|
|
runtime-benchmarks = [
|
||
|
|
"frame-benchmarking/runtime-benchmarks",
|
||
|
|
"frame-support/runtime-benchmarks",
|
||
|
|
"frame-system/runtime-benchmarks",
|
||
|
|
"sp-runtime/runtime-benchmarks",
|
||
|
|
]
|