axum-server is a [hyper] server implementation designed to be used with [axum] framework.
This project is maintained by community independently from [axum].
A simple hello world application can be served like:
```rust use axum::{routing::get, Router}; use std::net::SocketAddr;
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.
axum-server's MSRV is 1.49
.
This crate uses #![forbid(unsafe_code)]
to ensure everything is implemented in 100% safe Rust.
This project is licensed under the MIT license.