Cargo Features
[dependencies]
wasmtime-wasi-io = { version = "30.0.1", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverwasmtime-wasi-io
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of anyhow, bytes, and wasmtime
wasmtime:
Enables support for the Rust standard library, enabling APIs that require types and traits from Rust's
std
such asPath
andError
.Many features of the Wasmtime crate implicitly require this
std
feature. This will be automatically enabled if necessary.
wasmtime-wasi-io has 2 features without comments.