| Crates.io | event_rust |
| lib.rs | event_rust |
| version | 0.1.1 |
| created_at | 2015-08-18 13:06:52.547032+00 |
| updated_at | 2015-12-11 23:58:51.47213+00 |
| description | Lightweight non-blocking IO support windows and linux |
| homepage | https://github.com/tickbh/event_rust |
| repository | https://github.com/tickbh/event_rust |
| max_upload_size | |
| id | 2867 |
| size | 59,711 |
Event is a lightweight IO library for Rust with a focus on adding as little overhead as possible over the OS abstractions.
Getting started guide Currently a work in progress:
To use event_rust, first add this to your Cargo.toml:
[dependencies]
event_rust = "0.1.0"
Then, add this to your crate root:
extern crate event;
Currently, event_rust only supports Linux and Windows. The goal is to support all platforms that support Rust and the readiness IO model.