18 releases (4 breaking)

0.5.3 Dec 26, 2018
0.5.2 Dec 25, 2018
0.4.3 Nov 30, 2018
0.3.2 Oct 24, 2018
0.1.4 Jun 16, 2018

#248 in #hyper

Download history 7/week @ 2024-02-14 16/week @ 2024-02-21 21/week @ 2024-02-28 20/week @ 2024-03-06 22/week @ 2024-03-13 17/week @ 2024-03-20 19/week @ 2024-03-27

79 downloads per month
Used in 6 crates

MIT/Apache

235KB
7K SLoC

header

Asynchronous Web framework for Rust.


Crates.io Minimal Rust Version: 1.31.0 Build Status Coverage Status Gitter

Features

  • Type-safe and composable handlers based on Extractor system
  • Scoped routing and middlewares
  • Asynchronous HTTP server based on tokio, hyper and tower-service

Usage

use {
    std::net::SocketAddr,
    tsukuyomi::{
        App,
        config::prelude::*,
    },
    tsukuyomi_server::Server,
};

fn main() -> tsukuyomi_server::Result<()> {
    let app = App::create(
        path!("/")
            .to(endpoint::reply("Hello, world.\n"))
    )?;

    let addr = SocketAddr::from(([127, 0, 0, 1], 4000));
    println!("Listening on http://{}", addr);

    Server::new(app).bind(addr).run()
}

Resources

Extensions

License

Tsukuyomi is licensed under either of MIT license or Apache License, Version 2.0 at your option.

Dependencies

~10–20MB
~285K SLoC