Cargo Features
[dependencies]
staging-xcm = { version = "16.1.0", default-features = false, features = ["std", "wasm-api", "json-schema", "runtime-benchmarks"] }
- default = std
-
The
std
feature is set by default wheneverstaging-xcm
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of bounded-collections, parity-scale-codec, environmental, frame-support, log, scale-info, serde, sp-runtime, 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. - wasm-api
- json-schema
-
Enables schemars, json-schema of bounded-collections, json-schema of sp-weights
- runtime-benchmarks
-
Enables runtime-benchmarks of frame-support and sp-runtime
Affects
traits::SendXcm.ensure_successful_delivery
…