25 releases

0.7.1 Jul 31, 2024
0.6.0 Dec 22, 2023
0.5.1 May 15, 2023
0.4.7 Mar 19, 2023
0.3.3 Nov 25, 2021

#30 in Web programming

Download history 73618/week @ 2024-09-26 73459/week @ 2024-10-03 72891/week @ 2024-10-10 84192/week @ 2024-10-17 81774/week @ 2024-10-24 73488/week @ 2024-10-31 75216/week @ 2024-11-07 52088/week @ 2024-11-14 51918/week @ 2024-11-21 50429/week @ 2024-11-28 51867/week @ 2024-12-05 50482/week @ 2024-12-12 31874/week @ 2024-12-19 23389/week @ 2024-12-26 40238/week @ 2025-01-02 41656/week @ 2025-01-09

145,888 downloads per month
Used in 107 crates (90 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.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–18MB
~256K SLoC