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

#1 in #hyper-server

Download history 84267/week @ 2024-03-14 82827/week @ 2024-03-21 91013/week @ 2024-03-28 86108/week @ 2024-04-04 92955/week @ 2024-04-11 95599/week @ 2024-04-18 85230/week @ 2024-04-25 84382/week @ 2024-05-02 88982/week @ 2024-05-09 88324/week @ 2024-05-16 74405/week @ 2024-05-23 80441/week @ 2024-05-30 78433/week @ 2024-06-06 81134/week @ 2024-06-13 75335/week @ 2024-06-20 69796/week @ 2024-06-27

318,120 downloads per month
Used in 77 crates (69 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

~7–21MB
~269K SLoC