utoipa icon indicating copy to clipboard operation
utoipa copied to clipboard

Simple, Fast, Code first and Compile time generated OpenAPI documentation for Rust

Results 171 utoipa issues
Sort by recently updated
recently updated
newest added

I am currently writing a very simple application using [rocket](https://rocket.rs) and there I am using the [Responder](https://api.rocket.rs/v0.5/rocket/derive.Responder.html) derive macro to make my enum response types. Like this: ```rust #[derive(Responder)] enum...

Hiya! I am implementing some pagination for a few of my axum endpoints and am not able to properly get the Pagination fields into my structs. In my twisted mind...

Seems that there is an problem when trying to host swagger-ui on the root URL with axum. ```rust let app = Router::new() .merge(SwaggerUi::new("/").url("/openapi.json", ApiDoc::openapi())) ``` https://github.com/juhaku/utoipa/blob/970e10f4203edc8af68c78a009dbb8dc935703bb/utoipa-swagger-ui/src/axum.rs#L49-L57 A redirect from `/`...

Let me start of by saying: Thank you for your great work on this crate. Something that I noticed is that using `#[schema(title = "...")]` does not seem to have...

The current implementation is shit. If I have 100 routes the macro would be long af... Maybe something like actix has with configure that can be used to add routes....

Amazing work on this crate! I'm just testing it at the moment and my current approach is to use a request struct containing my domain objects - which leverage the...

Hi, I found this issue while renaming one of my package that was using a placeholder name. I've also renamed the folder it was in changing the path. Oddly enough...

Hi utoipa folks! First of all, thank you very much for your great work on this library, it has helped us a bunch to manage our API spec! We're just...

I'm trying to deserialize a [`OpenApi`](https://docs.rs/utoipa/*/utoipa/openapi/struct.OpenApi.html) object to build a crate that will generate types from a OpenAPI spec file, I tried with different specs (even one generated from this...

OpenAPI supports servers but reverse proxy could be configured independently for a particular service sitting behind that proxy. `utoipa` has support for servers but it looks like the trait `Modify`...