Go to file
Jesper Josefsson 67befbca52
Document the fact that `debug_handler` doesn't work within impl blocks (#1800)
Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
2023-03-03 09:57:50 +01:00
.github Try `cargo public-api-crates` on CI (#1761) 2023-02-16 22:41:41 +01:00
axum Replace weird doc paragraph by compiler-checked must_use attribute (#1801) 2023-03-03 08:54:38 +00:00
axum-core update tokio dep to fix potential security vulnerability (#1787) 2023-02-27 18:40:03 +01:00
axum-extra Update documentation for `FailedToDeserializeQueryString` response type (#1795) 2023-02-27 22:29:39 +00:00
axum-macros Document the fact that `debug_handler` doesn't work within impl blocks (#1800) 2023-03-03 09:57:50 +01:00
examples Add example showing how to run axum on hyper 1.0 (#1791) 2023-02-26 19:05:12 +01:00
.gitignore Ignore target directories in individual examples (#981) 2022-05-02 17:20:23 +02:00
CHANGELOG.md Move axum crate into workspace subfolder (#458) 2021-11-03 12:38:48 +01:00
CONTRIBUTING.md Contributing guide fixes 2021-08-03 21:44:49 +02:00
Cargo.toml Fix intra-doc links on docs.rs (#1205) 2022-07-28 19:14:31 +02:00
ECOSYSTEM.md Add deaftone to ECOSYSTEM.md (#1769) 2023-02-20 21:04:55 +01:00
README.md Move axum crate into workspace subfolder (#458) 2021-11-03 12:38:48 +01:00
deny.toml Ignore duplicate dependencies pulled in by `windows-sys` 2023-02-07 22:21:00 +01:00

README.md

axum

axum is a web application framework 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 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.

Usage example

use axum::{
    routing::{get, post},
    http::StatusCode,
    response::IntoResponse,
    Json, Router,
};
use serde::{Deserialize, Serialize};
use std::net::SocketAddr;

#[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
    // `axum::Server` is a re-export of `hyper::Server`
    let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
    tracing::debug!("listening on {}", addr);
    axum::Server::bind(&addr)
        .serve(app.into_make_service())
        .await
        .unwrap();
}

// 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.60.

Examples

The examples folder contains various examples of how to use axum. The docs also provide lots of code snippets and examples. For full-fledged examples, check out community-maintained showcases or tutorials.

Getting Help

In the axum's repo we also have a number of examples showing how to put everything together. Community-maintained showcases and tutorials also demonstrate how to use axum for real-world applications. You're also welcome to ask in the Discord channel or open a discussion with your question.

Community projects

See here for a list of community maintained crates and projects built with axum.

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.