Cargo Features
[dependencies]
wasmtime-wasi-io = { version = "39.0.1", default-features = false, features = ["std"] }
- default = std
-
The
stdfeature is set by default wheneverwasmtime-wasi-iois added withoutsomewhere 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
stdsuch asPathandError.Many features of the Wasmtime crate implicitly require this
stdfeature. This will be automatically enabled if necessary.
wasmtime-wasi-io has 2 features without comments.