axum-server

Crates.ioaxum-server
lib.rsaxum-server
version0.6.0
sourcesrc
created_at2021-08-20 08:00:44.210326
updated_at2023-12-22 19:30:39.990061
descriptionHigh level server designed to be used with axum framework.
homepagehttps://github.com/programatik29/axum-server
repositoryhttps://github.com/programatik29/axum-server
max_upload_size
id439910
size138,211
Adi Salimgereev (abs0luty)

documentation

README

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.

Commit count: 152

cargo fmt