25 releases (stable)

6.0.0 Jan 9, 2024
5.0.0 Nov 28, 2023
4.0.0 Oct 7, 2023
3.1.6 Oct 7, 2023
0.1.0-beta1 Mar 7, 2022

#418 in Web programming

Download history 24866/week @ 2024-01-03 26994/week @ 2024-01-10 30341/week @ 2024-01-17 28106/week @ 2024-01-24 28877/week @ 2024-01-31 28501/week @ 2024-02-07 30450/week @ 2024-02-14 29511/week @ 2024-02-21 29880/week @ 2024-02-28 30331/week @ 2024-03-06 32715/week @ 2024-03-13 28468/week @ 2024-03-20 24947/week @ 2024-03-27 29014/week @ 2024-04-03 30671/week @ 2024-04-10 29511/week @ 2024-04-17

119,217 downloads per month
Used in 35 crates (32 directly)

MIT/Apache

5MB
5.5K SLoC

utoipa-swagger-ui

Utoipa build crates.io docs.rs rustc

This crate implements necessary boilerplate code to serve Swagger UI via web server. It works as a bridge for serving the OpenAPI documentation created with utoipa library in the Swagger UI.

Currently implemented boilerplate for:

  • actix-web version >= 4
  • rocket version >=0.5
  • axum version >=0.7

Serving Swagger UI is framework independent thus this crate also supports serving the Swagger UI with other frameworks as well. With other frameworks, there is a bit more manual implementation to be done. See more details at serve or examples.

Crate Features

  • actix-web Enables actix-web integration with pre-configured SwaggerUI service factory allowing users to use the Swagger UI without a hassle.
  • rocket Enables rocket integration with pre-configured routes for serving the Swagger UI and api doc without a hassle.
  • axum Enables axum integration with pre-configured Router serving Swagger UI and OpenAPI specs hazzle free.
  • debug-embed Enables debug-embed feature on rust_embed crate to allow embedding files in debug builds as well.

Install

Use only the raw types without any boilerplate implementation.

[dependencies]
utoipa-swagger-ui = "6"

Enable actix-web framework with Swagger UI you could define the dependency as follows.

[dependencies]
utoipa-swagger-ui = { version = "6", features = ["actix-web"] }

Note! Also remember that you already have defined utoipa dependency in your Cargo.toml

Examples

Serve Swagger UI with api doc via actix-web. See full example from examples.

HttpServer::new(move || {
    App::new()
        .service(
            SwaggerUi::new("/swagger-ui/{_:.*}")
                .url("/api-docs/openapi.json", ApiDoc::openapi()),
        )
  })
  .bind((Ipv4Addr::UNSPECIFIED, 8989)).unwrap()
  .run();

Serve Swagger UI with api doc via rocket. See full example from examples.

#[rocket::launch]
fn rocket() -> Rocket<Build> {
    rocket::build()
        .mount(
            "/",
            SwaggerUi::new("/swagger-ui/<_..>")
                .url("/api-docs/openapi.json", ApiDoc::openapi()),
        )
}

Setup Router to serve Swagger UI with axum framework. See full implementation of how to serve Swagger UI with axum from examples.

let app = Router::new()
    .merge(SwaggerUi::new("/swagger-ui")
        .url("/api-docs/openapi.json", ApiDoc::openapi()));

License

Licensed under either of Apache 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, shall be dual licensed, without any additional terms or conditions.

Dependencies

~5–41MB
~622K SLoC