Cargo Features
[dependencies]
frame-system = { version = "38.0.0", default-features = false, features = ["std", "try-runtime", "experimental", "runtime-benchmarks"] }
- default = std
-
The
std
feature is set by default wheneverframe-system
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of parity-scale-codec, frame-support, log, scale-info, serde, sp-core, sp-io, sp-runtime, sp-std, sp-version, and sp-weights
serde:
Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library.Affects
frame-system::mocking
,limits::ValidationErrors.errors
… - try-runtime
-
Enables try-runtime of frame-support and sp-runtime
- experimental
-
Enables experimental of frame-support
- runtime-benchmarks
-
Enables runtime-benchmarks of frame-support and sp-runtime