Cargo Features

[dependencies]
wasmtime-wasi-io = { version = "30.0.1", default-features = false, features = ["std"] }
default = std

The std feature is set by default whenever wasmtime-wasi-io is added without default-features = false somewhere in the dependency tree.

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 as Path and Error.

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.