Quentin Santos

Results 54 comments of Quentin Santos

Coming from https://github.com/launchbadge/sqlx/issues/2911 from the exact same thing: `cargo audit` mistakenly reports a vulnerability in the `rsa` package even though it is not in `cargo tree`.

This is a duplicate of https://github.com/RReverser/serde-xml-rs/issues/49

Minimal working example: ```rust // src/main.rs use axum::{routing::get, Router}; use utoipa::OpenApi; use utoipa_swagger_ui::SwaggerUi; #[utoipa::path(get, path = "/hello-world")] pub async fn hello_world() -> &'static str { "Hello, World!" } #[tokio::main] async...

It's worse than just allowing to serve the Swagger UI at `//`: `utoipa-swagger-ui` actually [captures everything under the provided path](https://github.com/juhaku/utoipa/blob/master/utoipa-swagger-ui/src/axum.rs#L55).

If anyone encounters a similar issue: since that project has had no activity since 2022, I have solved the issue for myself by writing my own extension: https://github.com/qsantos/ViHN. I'll keep...

I have encountered the same bug. This can be reproduced by running this in one terminal: ``` $ python3 -m venv venv $ source venv/bin/activate $ pip install django $...

See also: https://vorner.github.io/2020/11/06/40-ms-bug.html

You might be observing #488. Add `-H 'Connection: close'` to your `wrk` invocation.

I encountered this as well. Essentially, I need to implement iteration on a type `Y` that wraps a type `X`. Instead of reimplementing iteration from scratch, I could wrap the...

Don't worry, and thanks for writing this great resource by the way :-)