Ralph Bisschops

Results 87 comments of Ralph Bisschops

It looks like my issue is because `miniz_oxide` is build using a `build.rs` script. When adding `#![forbid(unsafe_code)]` is added to the `build.rs` it does flag the crate as safe. This...

No problem, take your time. I worked around it and was able to test what I need to test. So this is not holding me back. But would be nice...

Like @barafael stated ["Even better TOML"](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml) (also called ["Taplo"](https://github.com/tamasfe/taplo)) does not have this problem. Although it is still in its early stages it works in most cases. But as this...

This is an issue for [`schemars`](https://github.com/GREsau/schemars). But are a lot of the serde paramaters are implemented for `schemars`. As you can see here: https://github.com/GREsau/schemars/blob/master/schemars_derive/src/attr/schemars_to_serde.rs The feature you request above might...

This has been added very recently (yesterday), so currently only in `master`. This will also be available in the next release, but that might not be soon. So yes it...

They are both correct according to the spec. The `examples` can lists multiple example values. The `example` (notice the missing `s`) can denote only one example value. ![Screenshot from 2022-10-12...

Would be a fan to see external docs implemented! Don't have suggestions on how to show this right now.

I fixed this issue before by switching linker from `ld` (GNU, default) or `lld` (LLVM): To switch to `lld` I used: `.cargo/config.toml`: (make sure `lld` is installed) ```toml [target.x86_64-unknown-linux-gnu] rustflags...

Could you maybe add some more info on what you want to do? It looks like you are trying to do something complicated that could maybe be solved in a...

This is an issue that should be resolved in Schemars. Then Schemars needs to detect [reserved keywords](https://doc.rust-lang.org/reference/keywords.html) and return an error if a reserved keyword is used (and not prefixed...