smol 0.3.0

A small and fast async runtime
Documentation
fn main() -> std::io::Result<()> {
    smol::run(async {
        tide::log::start();
        let mut app = tide::new();

        app.at("/").get(|_| async { Ok("Hello from tide!") });
        app.listen("127.0.0.1:8080").await?;

        Ok(())
    })
}