-
Recently I was evaluating using `poem-openapi` instead of `axum` with `utoipa`, but ultimately went with the latter because of utoipa's integration with serde.
Just as an example, I have a struct w…
-
Use [utoipa](https://crates.io/crates/utoipa) to automatically generate OpenAPI docs for the REST endpoints
-
Hope to support this feature
" /{name}/{age}"
-
### Background
Currently, the OpenAPI documentation is maintained manually with openapi.yml. This approach requires regular manual updates to ensure the API documentation stays in sync with the codeb…
-
### Description and goal
In the error derive, we compute the type of error's context ( ie list its properties and their type).
For now the code is pretty simple and do manually the cast between si…
sim51 updated
8 months ago
-
```rs
#[utoipauto]
#[derive(utoipa::OpenApi)]
#[openapi()] // try to emulate () to get it to work
pub struct ApiDoc;
```
Error message I seem to be getting is: proc-macro panicked: unsupported p…
-
Hello,
I've been trying to find a way to have custom `ToSchema` impls be inlined automatically in the generated OpenAPI specification. Is that possible and if so, how exactly?
## Background
…
-
I think it'd be nice to support (behind a feature flag) the [`Json`](https://docs.rs/sqlx/latest/sqlx/types/struct.Json.html) because, currently the typing is lost on this element on the OpenAPI gener…
-
Hi! :wave:
I'm playing around with this crate and ran into an issue where schemas (and I'm guessing paths) aren't detected when behind a `cfg_attr` flag. E.g:
Works:
```rust
#[derive(ToSchema)]…
-
This seems to be the best option for API docs that I can find: https://github.com/juhaku/utoipa
It doesnt support the the pattern with `Perform` trait for API handlers. This pattern also doesnt ser…