# mio **Repository Path**: mirrors_hjr3/mio ## Basic Information - **Project Name**: mio - **Description**: Metal IO library for Rust - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MIO - Metal IO MIO is a lightweight IO library for Rust with a focus on adding as little overhead as possible over the OS abstractions. [![Build Status](https://travis-ci.org/carllerche/mio.svg?branch=master)](https://travis-ci.org/carllerche/mio) [![crates.io](http://meritbadge.herokuapp.com/mio)](https://crates.io/crates/mio) - API documentation: [master](http://rustdoc.s3-website-us-east-1.amazonaws.com/mio/master/mio/), [v0.3](http://rustdoc.s3-website-us-east-1.amazonaws.com/mio/v0.3.x/mio/) ## Usage To use `mio`, first add this to your `Cargo.toml`: ```toml [dependencies] mio = "0.3.0" ``` Then, add this to your crate root: ```rust extern crate mio; ``` ## Features * Event loop backed by epoll, kqueue. * Zero allocations at runtime * Non-blocking TCP, UDP and Unix domain sockets * High performance timer system * Thread safe message channel for cross thread communication __Eventually__ * Signal handling * Windows support ## Non goals The following are specifically omitted from MIO and are left to the user or higher level libraries. * File operations * Thread pools / multi-threaded event loop ## Platforms Currently, MIO only supports Linux and Darwin. The goal is to support all platforms that support Rust and the readiness IO model. ## Community A group of mio users hang out in the #mio channel on the Mozilla IRC server (irc.mozilla.org). This can be a good place to go for questions.