#swagger-ui #axum #routes #dist #api #open-api #title

swagger-ui-dist

packages the JS/CSS code of the swagger-ui in the form of axum routes

4 stable releases

5.17.14 May 28, 2024
5.17.13 May 27, 2024
5.17.12 May 21, 2024
5.17.10 May 19, 2024

#2 in #dist

Download history 112/week @ 2024-05-13 298/week @ 2024-05-20 480/week @ 2024-05-27 27/week @ 2024-06-03 131/week @ 2024-06-10

1,048 downloads per month

Apache-2.0

4MB
122 lines

Latest Version

The version number reflects the swagger-ui version embedded.

Usage

With Inline OpenAPI

use axum::Router;
use swagger_ui_dist::{ApiDefinition, OpenApiSource};

#[tokio::main]
async fn main() {
    let api_def = ApiDefinition {
        uri_prefix: "/api",
        api_definition: OpenApiSource::Inline(include_str!("petstore.yaml")),
        title: Some("My Super Duper API"),
    };
    let app = Router::new().merge(swagger_ui_dist::generate_routes(api_def));
    let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
    println!("listening on http://localhost:3000/api");
    axum::serve(listener, app).await.unwrap();
}

With external Route

use axum::{routing::get, Router};
use swagger_ui_dist::{ApiDefinition, OpenApiSource};

#[tokio::main]
async fn main() {
    let api_def = ApiDefinition {
        uri_prefix: "/api",
        api_definition: OpenApiSource::Uri("/openapi.yml"),
        title: Some("My Super Duper API"),
    };
    let app = Router::new()
        .route("/openapi.yml", get(|| async move { include_str!("petstore.yaml") }))
        .merge(swagger_ui_dist::generate_routes(api_def));
    let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
    println!("listening on http://localhost:3000/api");
    axum::serve(listener, app).await.unwrap();
}

Dependencies

~5–7.5MB
~127K SLoC