Use safe rust

This commit is contained in:
Stjepan Glavina 2020-02-04 11:37:24 +01:00
parent 1c347869c9
commit e66cb48ec9
2 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* Small - Under 1000 lines of code!
* Fast - TODO
* Safe - Written fully in safe Rust.
* Portable - Works on Linux, macOS, iOS, and Windows.
* Documented - Easy to tweak for custom use cases!
* Lightweight - Built from scratch, hooks directly into epoll/kqueue/wepoll.

View File

@ -1,3 +1,5 @@
#![deny(unsafe_code)]
mod executor;
mod reactor;
mod timer;