axum-server
is a [hyper
] server implementation designed to be used with [axum
] framework.
rustls
]. Only pem
format is supported for certificates.axum
] can directly be served.axum
], any Service
that implements Clone
can be served.[axum
] "Hello, World!" example can be run like:
```rust use axum::{ handler::get, Router, };
async fn main() { let app = Router::new().route("/", get(|| async { "Hello, World!" }));
axum_server::bind("127.0.0.1:3000")
.serve(app)
.await
.unwrap();
} ```
This crate uses #![forbid(unsafe_code)]
to ensure everything is implemented in 100% safe Rust.
This project is licensed under the MIT license.