16 stable releases

2.2.0 Jan 9, 2023
2.1.2 Jan 12, 2021
2.1.1 Aug 6, 2020
2.1.0 Jul 10, 2020
1.1.0 Mar 18, 2020

#46 in #hyper-http

Download history 2/week @ 2024-02-19 15/week @ 2024-02-26 38/week @ 2024-03-04

55 downloads per month
Used in saphir

MIT license

82KB
1.5K SLoC

logo

doc crate issue Rust downloads license dependency status

Saphir is a fully async-await http server framework for rust

The goal is to give low-level control to your web stack (as hyper does) without the time consuming task of doing everything from scratch.

Quick Overview

use saphir::prelude::*;
struct TestController {}
#[controller]
impl TestController {
    #[get("/{var}/print")]
    async fn print_test(&self, var: String) -> (u16, String) {
        (200, var)
    }
}
async fn test_handler(mut req: Request) -> (u16, Option<String>) {
    (200, req.captures_mut().remove("variable"))
}
#[tokio::main]
async fn main() -> Result<(), SaphirError> {
    env_logger::init();
    let server = Server::builder()
        .configure_listener(|l| {
            l.interface("127.0.0.1:3000")
        })
        .configure_router(|r| {
            r.route("/{variable}/print", Method::GET, test_handler)
                .controller(TestController {})
        })
        .build();
    
    server.run().await
}

Dependencies

~2MB
~43K SLoC