23 releases

0.6.0 Dec 22, 2023
0.5.1 May 15, 2023
0.4.7 Mar 19, 2023
0.4.4 Nov 7, 2022
0.3.3 Nov 25, 2021

#24 in Web programming

Download history 37805/week @ 2024-01-03 54578/week @ 2024-01-10 59278/week @ 2024-01-17 60758/week @ 2024-01-24 71643/week @ 2024-01-31 67711/week @ 2024-02-07 68849/week @ 2024-02-14 77729/week @ 2024-02-21 76088/week @ 2024-02-28 79118/week @ 2024-03-06 83848/week @ 2024-03-13 84037/week @ 2024-03-20 90260/week @ 2024-03-27 86503/week @ 2024-04-03 90801/week @ 2024-04-10 79382/week @ 2024-04-17

362,690 downloads per month
Used in 69 crates (61 directly)

MIT license

81KB
1.5K SLoC

License Crates.io Docs

axum-server

axum-server is a hyper server implementation designed to be used with axum framework.

This project is maintained by community independently from axum.

Features

  • HTTP/1 and HTTP/2
  • HTTPS through rustls.
  • High performance through hyper.
  • Using tower make service API.
  • Very good axum compatibility. Likely to work with future axum releases.

Usage Example

A simple hello world application can be served like:

use axum::{routing::get, Router};
use std::net::SocketAddr;

#[tokio::main]
async fn main() {
    let app = Router::new().route("/", get(|| async { "Hello, world!" }));

    let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
    println!("listening on {}", addr);
    axum_server::bind(addr)
        .serve(app.into_make_service())
        .await
        .unwrap();
}

You can find more examples here.

Minimum Supported Rust Version

axum-server's MSRV is 1.63.

Safety

This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% safe Rust.

License

This project is licensed under the MIT license.

Dependencies

~8–19MB
~260K SLoC