ferrum 0.2.1

Extensible, Concurrency Focused Web Framework in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate ferrum;

use ferrum::*;

fn main() {
    Ferrum::new(move |_: &mut Request | {
        Ok(Response::new_redirect("http://rust-lang.org"))
    }).http("localhost:3000").unwrap();
}