Cargo Features
[dependencies]
polkadot-parachain-primitives = { version = "14.0.0", default-features = false, features = ["std", "wasm-api", "runtime-benchmarks"] }
- default = std
-
The
std
feature is set by default wheneverpolkadot-parachain-primitives
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of bounded-collections, parity-scale-codec, polkadot-core-primitives, and scale-info
parity-scale-codec:
note: special care is taken to avoid inclusion of
sp-io
externals when compiling this crate for WASM. This is critical to avoid forcing all parachain WASM into implementing various unnecessary Substrate-specific endpoints.and std of serde, sp-core, sp-runtime, and sp-weights
serde:
all optional crates.
- wasm-api
- runtime-benchmarks
-
Enables runtime-benchmarks of sp-runtime