1 2 3 4 5 6 7 8
//! The goal of this library is to stay within the style of the //! Rust standard library while extending it to support more features. #![deny(missing_docs)] #![cfg_attr(target_os = "wasi", feature(wasi_ext))] pub mod fs; pub mod io;
1 2 3 4 5 6 7 8
//! The goal of this library is to stay within the style of the //! Rust standard library while extending it to support more features. #![deny(missing_docs)] #![cfg_attr(target_os = "wasi", feature(wasi_ext))] pub mod fs; pub mod io;