wstd 0.5.0-draft1

An async standard library for Wasm Components and WASI 0.2
Documentation
//! Async IO abstractions.

mod copy;
mod cursor;
mod empty;
mod read;
mod seek;
mod write;

pub use copy::*;
pub use cursor::*;
pub use empty::*;
pub use read::*;
pub use seek::*;
pub use write::*;

/// The error type for I/O operations.
///
pub use std::io::Error;

/// A specialized Result type for I/O operations.
///
pub use std::io::Result;