hooch 0.1.1

A small async runtime that's been bootlegged for my projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// TODO start building out a time module
//
//
// use std::time::{Duration, Instant};
//
// pub async fn sleep(duration: Duration) {}
//
// /// I want to use Mio as the core for all notifications
// struct Sleep {
//     duration: Duration,
//     instant: Instant,
// }

// impl Future for Sleep {
//
// }