Víctor Martínez
Víctor Martínez
Would be nice to have an icon for .ron files like the .json ones!
## Summary I want to init a client and set its role on the session (Publisher or Subscriber or both). A publisher will only send data. A subscriber will only...
# Prerequisites Please answer the following questions for yourself before submitting an issue. >**YOU MAY DELETE THE PREREQUISITES SECTION.** - [x] I am using the [latest version](https://github.com/archcraft-os/releases/releases/tag/v21.10) - [x] I...
Hi! I'm trying to expose an OpenAPI spec this way: ```rust ... .service( web::scope("/docs") .wrap(auth) .service( SwaggerUi::new("/swagger-ui/{_:.*}").url("/api-doc/openapi.json", openapi.clone()), )) ``` The problem is that when navigating to `localhost:8000/docs/swagger-ui` we get...
Hello there, I implemented an application that uses lapin to purely publish messages. It is used as a cronjob that will spawn many tens of threads concurrently and for each...
Hi! I have the following use case: I generate manually both the token and access token to access the Gmail API. Therefore, I want to use the `AccessTokenAuthenticator`, but I...
I'm storing some data inside the model that I would like to use on the tests to compute some values. For example, I'm storing the `currentDate` inside the model, and...
- [x] ran tests locally with `npm test` (I would like some help to come up with a proper test for this new function, but from the implementation it looks...
## Description of change The config crate is pretty standard nowadays on the Rust community to parse configuration files to a Rust type. I didn't want to fetch one by...
When I use the `headers: true` option I'd like to get a map where all the headers are available as an entry but if the column doesn't have a value...