26 releases

0.7.2 Mar 14, 2025
0.7.1 Jul 31, 2024
0.6.0 Dec 22, 2023
0.5.1 May 15, 2023
0.3.3 Nov 25, 2021

#12 in Asynchronous

Download history 88820/week @ 2025-02-01 90749/week @ 2025-02-08 77565/week @ 2025-02-15 78345/week @ 2025-02-22 86878/week @ 2025-03-01 91688/week @ 2025-03-08 109781/week @ 2025-03-15 98071/week @ 2025-03-22 101722/week @ 2025-03-29 109188/week @ 2025-04-05 88554/week @ 2025-04-12 85192/week @ 2025-04-19 85110/week @ 2025-04-26 87416/week @ 2025-05-03 91314/week @ 2025-05-10 79504/week @ 2025-05-17

356,454 downloads per month
Used in 154 crates (117 directly)

MIT license

86KB
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.66.

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–17MB
~240K SLoC