Cargo Features
[dependencies]
pallet-session-benchmarking = { version = "38.0.0", default-features = false, features = ["std", "runtime-benchmarks"] }
- default = std
-
The
std
feature is set by default wheneverpallet-session-benchmarking
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of frame-benchmarking, frame-support, frame-system, pallet-session, pallet-staking, rand, sp-runtime, and sp-session
rand:
Option (enabled by default): without "std" rand uses libcore; this option enables functionality expected to be available on a standard platform.
- runtime-benchmarks
-
Enables runtime-benchmarks of frame-benchmarking, frame-support, frame-system, pallet-staking, and sp-runtime
Affects
pallet-session-benchmarking::inner
…