1
2
3
4
5
6
7
8
9
10
//! 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))]
#![cfg_attr(all(unix, unix_socket_peek), feature(unix_socket_peek))]
#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]

pub mod fs;
pub mod io;