License Docs - Master Docs - Stable

axum-server

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

Features

Usage example

[axum] "Hello, World!" example can be run like:

```rust use axum::{ handler::get, Router, };

[tokio::main]

async fn main() { let app = Router::new().route("/", get(|| async { "Hello, World!" }));

axum_server::bind("127.0.0.1:3000")
    .serve(app)
    .await
    .unwrap();

} ```

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.