Completely remove epoll crate dependency

Move epoll.rs from polly to utils crate and use this file,
in micro_http, as an epoll wrapper instead of the epoll crate.

Signed-off-by: Laura Loghin <lauralg@amazon.com>
Signed-off-by: YUAN LYU <lyuyuan92@gmail.com>
This commit is contained in:
Laura Loghin
2020-03-06 13:33:36 +02:00
committed by Adrian Catangiu
parent 7289d64e24
commit 548d297be7
3 changed files with 62 additions and 66 deletions

View File

@@ -109,6 +109,8 @@
//! }
//! ```
extern crate utils;
mod common;
mod connection;
mod request;