warp 0.2.5

serve the web at warp speeds
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(warnings)]

use tokio::net::UnixListener;

#[tokio::main]
async fn main() {
    pretty_env_logger::init();

    let mut listener = UnixListener::bind("/tmp/warp.sock").unwrap();
    let incoming = listener.incoming();
    warp::serve(warp::fs::dir("examples/dir"))
        .run_incoming(incoming)
        .await;
}