4 releases (major breaking)

3.0.0 Jan 9, 2024
2.0.0 Nov 28, 2023
1.0.0 Oct 7, 2023
0.1.0 Aug 6, 2023

#37 in #openapi

Download history 1246/week @ 2023-12-23 1648/week @ 2023-12-30 1936/week @ 2024-01-06 2096/week @ 2024-01-13 2017/week @ 2024-01-20 2108/week @ 2024-01-27 1959/week @ 2024-02-03 2013/week @ 2024-02-10 958/week @ 2024-02-17 2085/week @ 2024-02-24 1949/week @ 2024-03-02 1315/week @ 2024-03-09 1516/week @ 2024-03-16 1107/week @ 2024-03-23 1471/week @ 2024-03-30 1919/week @ 2024-04-06

6,225 downloads per month
Used in 9 crates (6 directly)

MIT/Apache

310KB
4.5K SLoC

utoipa-redoc

Utoipa build crates.io docs.rs rustc

This crate works as a bridge between utoipa and Redoc OpenAPI visualizer.

Utoipa-redoc provides simple mechanism to transform OpenAPI spec resource to a servable HTML file which can be served via predefined framework integration or used standalone and served manually.

You may find fullsize examples from utoipa's Github repository.

Crate Features

  • actix-web Allows serving Redoc via actix-web. version >= 4
  • rocket Allows serving Redoc via rocket. version >=0.5
  • axum Allows serving Redoc via axum. version >=0.7

Install

Use Redoc only without any boiler plate implementation.

[dependencies]
utoipa-redoc = "3"

Enable actix-web integration with Redoc.

[dependencies]
utoipa-redoc = { version = "3", features = ["actix-web"] }

Using standalone

Utoipa-redoc can be used standalone as simply as creating a new Redoc instance and then serving it by what ever means available as text/html from http handler in your favourite web framework.

Redoc::to_html method can be used to convert the Redoc instance to a servable html file.

let redoc = Redoc::new(ApiDoc::openapi());

// Then somewhere in your application that handles http operation.
// Make sure you return correct content type `text/html`.
let redoc_handler = move || async {
    redoc.to_html()
};

Customization

Utoipa-redoc enables full customizaton support for Redoc according to what can be customized by modifying the HTML template and configuration options.

The default HTML template can be fully overridden to ones liking with Redoc::custom_html method. The HTML template must contain $spec and $config variables which are replaced during Redoc::to_html execution.

  • $spec Will be the Spec that will be rendered via Redoc.
  • $config Will be the current Config. By default this is EmptyConfig.

Overiding the HTML template with a custom one.

let html = "...";
Redoc::new(ApiDoc::openapi()).custom_html(html);

Configuration

Redoc can be configured with JSON either inlined with the Redoc declaration or loaded from user defined file with FileConfig.

Inlining the configuration.

Redoc::with_config(ApiDoc::openapi(), || json!({ "disableSearch": true }));

Using FileConfig.

Redoc::with_config(ApiDoc::openapi(), FileConfig);

Read more details in Config.

Examples

Serve Redoc via actix-web framework.

use actix_web::App;
use utoipa_redoc::{Redoc, Servable};

App::new().service(Redoc::with_url("/redoc", ApiDoc::openapi()));

Serve Redoc via rocket framework.

use utoipa_redoc::{Redoc, Servable};

rocket::build()
    .mount(
        "/",
        Redoc::with_url("/redoc", ApiDoc::openapi()),
    );

Serve Redoc via axum framework.

use axum::Router;
use utoipa_redoc::{Redoc, Servable};

let app = Router::<S>::new()
    .merge(Redoc::with_url("/redoc", ApiDoc::openapi()));

Use Redoc to serve OpenAPI spec from url.

Redoc::new(
  "https://github.com/swagger-api/swagger-petstore/blob/master/src/main/resources/openapi.yaml")

Use Redoc to serve custom OpenAPI spec using serde's json!() macro.

Redoc::new(json!({"openapi": "3.1.0"}));

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

~1–38MB
~567K SLoC