iron 0.3.1

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

use iron::prelude::*;
use iron::status;

fn main() {
    Iron::new(|_: &mut Request| {
        Ok(Response::with((status::Ok, "Hello world!")))
    }).http("localhost:3000").unwrap();
}