utoipa_swagger_ui_vendored/lib.rs
1//! This crate holds the [Swagger UI](https://github.com/swagger-api/swagger-ui) zip archive re-packaged as
2//! Rust crate. The crate serves as a build dependency for `utoipa-swagger-ui` and is used to serve the
3//! Swagger UI when `vendored` crate feature is enabled for `utoipa-swagger-ui` crate.
4//!
5//! Vendored Swagger UI provides the means to serve Swagger UI in sandboxed environments where network access or
6//! even other means to provide Swagger UI is not possible.
7//!
8//! **Swagger UI version: `5.17.14`**
9//!
10//! ## License
11//!
12//! Licensed under either of [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT) license at your option.
13//!
14//! Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate
15//! by you, shall be dual licensed, without any additional terms or conditions.
16
17/// Swagger UI zip bytes
18#[doc(hidden)]
19pub const SWAGGER_UI_VENDORED: &[u8] = std::include_bytes!("../res/v5.17.14.zip");