Sincere
Sincere is http server and micro web framework for Rust(stable) based on epoll, kqueue and multithreadind. Here is an example of a simple application:
extern crate sincere;
use App;
Don't forget add this to your Cargo.toml:
[dependencies]
sincere = "0.3"
Build and run, then, visiting http://127.0.0.1:8000/, you will see Hello world on the screen.