Cargo Features
[dependencies]
wasix = { version = "0.12.21", default-features = false, features = ["std", "rustc-dep-of-std"] }
- default = std
-
The
std
feature is set by default wheneverwasix
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of wasi ^0.11.0
- rustc-dep-of-std = compiler_builtins, core, rustc-std-workspace-alloc
-
Unstable feature to support being a libstd dependency
Enables rustc-dep-of-std of wasi ^0.11.0
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- compiler_builtins rustc-dep-of-std?
-
Enables compiler_builtins
When built as part of libstd
- core rustc-dep-of-std?
-
Enables rustc-std-workspace-core
- rustc-std-workspace-alloc rustc-dep-of-std?