mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 22:58:00 +00:00
f441a5fc93
Signed-off-by: alvicsam <alvicsam@gmail.com>
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "cumulus-pallet-session-benchmarking"
|
|
version = "3.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/cumulus/"
|
|
description = "FRAME sessions pallet benchmarking"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
parity-scale-codec = { version = "3.6.4", default-features = false }
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false}
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false}
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false}
|
|
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true}
|
|
pallet-session = { path = "../../../substrate/frame/session", default-features = false}
|
|
|
|
[features]
|
|
default = ["std"]
|
|
runtime-benchmarks = [
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"parity-scale-codec/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"frame-system/std",
|
|
"frame-benchmarking/std",
|
|
"frame-support/std",
|
|
"pallet-session/std",
|
|
]
|