shuttle-axum

Crates.ioshuttle-axum
lib.rsshuttle-axum
version0.46.0
sourcesrc
created_at2023-03-14 12:28:29.027644
updated_at2024-06-13 10:10:06.383175
descriptionService implementation to run an axum webserver on shuttle
homepage
repositoryhttps://github.com/shuttle-hq/shuttle
max_upload_size
id809811
size3,549
Release (github:shuttle-hq:release)

documentation

README

Shuttle service integration for the Axum web framework

Axum 0.7 is used by default.

Axum 0.6 is supported by using these feature flags:

axum = "0.6.0"
shuttle-axum = { version = "0.46.0", default-features = false, features = ["axum-0-6"] }

Example

use axum::{routing::get, Router};

async fn hello_world() -> &'static str {
    "Hello, world!"
}

#[shuttle_runtime::main]
async fn axum() -> shuttle_axum::ShuttleAxum {
    let router = Router::new().route("/", get(hello_world));

    Ok(router.into())
}
Commit count: 1307

cargo fmt