Ralph Bisschops

Results 87 comments of Ralph Bisschops

> > When testing my code I want to be able to test out my API endpoint, but not keep the changes in the database. > > This seems pretty...

> I am starting a new project soon and I'm really hoping to use Rocket, but OpenAPI support is a determining feature. I've looked at okapi but code genning off...

Using [Flamegraph](https://github.com/flamegraph-rs/flamegraph) you can see that most of the time is spend inside of [`pom`](https://crates.io/crates/pom). (Pom was created by the same author) ![Screenshot from 2022-01-24 23-25-04](https://user-images.githubusercontent.com/2608639/150875666-c75d9246-fe74-4358-aeeb-7f09e481b384.png) Using [`nom`](https://crates.io/crates/nom) will change...

I got this issue in my pipeline after I update my dependencies. In that list was: `cc` It changed from version: version = "1.0.58" To: version = "1.0.59" After this...

I now have this problem again in another project. It works locally but not on CI. Also tried running docker container locally but could not reproduce it. Although CI consistently...

> @ArekPiekarz > > > @orhun Unfortunately I already had libxkbcommon installed when I tried to run `cargo tarpaulin`. > > My point was: in my case "something" was missing...

Okay took me quite a few hours fixing and testing everything, but I fixed it. Let me explain thing for other people that have similar issues. For initial problems I...

Summary for solving this (and maybe other) issues: These fixes can be used independently. (are in rough order of how best to check) 1. Clear caches / do a clean...

I think this is a version conflict. `rocket_okapi v0.5.1` depends on `schemars v0.7.0`, not `0.8.10`. And the same trait from 2 different versions are not treated the same. I recommend...

For Rocket is recommend switching to the RC (Release candidate). It is very stable, I have used it quite a bit. (I see you just did that in the last...