Ergonomic and modular web framework built with Tokio, Tower, and Hyper https://crates.io/crates/axum
Find a file
2026-05-05 15:16:24 +02:00
.github integrate release-plz (#3739) 2026-05-05 13:16:39 +02:00
axum integrate release-plz (#3739) 2026-05-05 13:16:39 +02:00
axum-core feat: impl IntoResponseParts for Redirect (#3721) 2026-05-02 17:46:22 +02:00
axum-extra Merge branch 'v0.8.x' into yanns/v0.8.9 2026-04-07 11:40:51 +02:00
axum-macros chore: use a more recent nightly for axum-macros tests 2026-05-05 15:16:24 +02:00
contrib/ide/vscode Add recommended settings for VSCode (#3602) 2025-12-27 19:47:00 +01:00
examples fix: add tracing calls to tracing-aka-logging example closures (#3722) 2026-04-15 11:34:16 +02:00
.clippy.toml Replace custom BoxCloneService struct with tower::util::BoxCloneSyncService (#3109) 2024-12-27 08:57:52 +01:00
.gitignore Unignore Cargo.lock file (#3104) 2024-12-26 14:35:46 +01:00
Cargo.lock Bump matchit to 0.9.2 (#3702) 2026-04-10 19:47:51 +02:00
Cargo.toml fix: empty_enum renamed to empty_enums (#3642) 2026-02-04 07:34:35 +01:00
CHANGELOG.md Move axum crate into workspace subfolder (#458) 2021-11-03 12:38:48 +01:00
CONTRIBUTING.md Lowercase axum in a few more places 2025-01-23 17:38:24 -05:00
deny.toml axum: Use serde_html_form for Query and Form (#3594) 2025-12-26 13:03:42 +01:00
LICENSE Update and centralize the LICENSE file to the repo root (#3401) 2025-08-12 23:31:12 +02:00
README.md Move axum crate into workspace subfolder (#458) 2021-11-03 12:38:48 +01:00

axum

axum is an HTTP routing and request-handling library that focuses on ergonomics and modularity.

Build status Crates.io Documentation

More information about this crate can be found in the crate documentation.

High level features

  • Route requests to handlers with a macro free API.
  • Declaratively parse requests using extractors.
  • Simple and predictable error handling model.
  • Generate responses with minimal boilerplate.
  • Take full advantage of the tower and tower-http ecosystem of middleware, services, and utilities.

In particular the last point is what sets axum apart from other libraries / frameworks. axum doesn't have its own middleware system but instead uses tower::Service. This means axum gets timeouts, tracing, compression, authorization, and more, for free. It also enables you to share middleware with applications written using hyper or tonic.

⚠ Breaking changes ⚠

We are currently working towards axum 0.9 so the main branch contains breaking changes. See the 0.8.x branch for what's released to crates.io.

Usage example

use axum::{
    routing::{get, post},
    http::StatusCode,
    Json, Router,
};
use serde::{Deserialize, Serialize};

#[tokio::main]
async fn main() {
    // initialize tracing
    tracing_subscriber::fmt::init();

    // build our application with a route
    let app = Router::new()
        // `GET /` goes to `root`
        .route("/", get(root))
        // `POST /users` goes to `create_user`
        .route("/users", post(create_user));

    // run our app with hyper, listening globally on port 3000
    let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
    axum::serve(listener, app).await;
}

// basic handler that responds with a static string
async fn root() -> &'static str {
    "Hello, World!"
}

async fn create_user(
    // this argument tells axum to parse the request body
    // as JSON into a `CreateUser` type
    Json(payload): Json<CreateUser>,
) -> (StatusCode, Json<User>) {
    // insert your application logic here
    let user = User {
        id: 1337,
        username: payload.username,
    };

    // this will be converted into a JSON response
    // with a status code of `201 Created`
    (StatusCode::CREATED, Json(user))
}

// the input to our `create_user` handler
#[derive(Deserialize)]
struct CreateUser {
    username: String,
}

// the output to our `create_user` handler
#[derive(Serialize)]
struct User {
    id: u64,
    username: String,
}

You can find this example as well as other example projects in the example directory.

See the crate documentation for way more examples.

Performance

axum is a relatively thin layer on top of hyper and adds very little overhead. So axum's performance is comparable to hyper. You can find benchmarks here and here.

Safety

This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% safe Rust.

Minimum supported Rust version

axum's MSRV is 1.80.

Examples

The examples folder contains various examples of how to use axum. The docs also provide lots of code snippets and examples.

Getting Help

In the axum's repo we also have a number of examples showing how to put everything together. You're also welcome to ask in the Discord channel or open a discussion with your question.

Contributing

🎈 Thanks for your help improving the project! We are so happy to have you! We have a contributing guide to help you get involved in the axum project.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in axum by you, shall be licensed as MIT, without any additional terms or conditions.