rweb 0.15.0

Yet another web server framework for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Temporarily ignored as rweb does not support ** route yet.
//
//#![deny(warnings)]
//use rweb::Filter;
//
#[tokio::main]
async fn main() {
    //    // Match any request and return hello world!
    //    let routes = rweb::any().map(|| "Hello, World!");
    //
    //    rweb::serve(routes).run(([127, 0, 0, 1], 3030)).await;
}