susanoo 0.0.2

A micro Web framework, based on futures, tokio and hyper
Documentation
susanoo-0.0.2 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( RawResponse::new() .with_body("Hello, world"), ) } fn main() { let s = Susanoo::default() .with_route(Route::get("/", hello)); s.run().unwrap() } ```