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