susanoo 0.0.5

A micro Web framework, based on futures, tokio and hyper
Documentation
susanoo-0.0.5 has been yanked.
A micro Web framework based on Hyper, Futures and Tokio. # Example ```{rust,ignore} extern crate susanoo; use susanoo::prelude::*; fn hello(ctx: Context) -> Outcome { ctx.respond("Hello, world") } fn main() { let s = Susanoo::default() .with_route(Route::get("/", hello)); s.run().unwrap() } ```