Jonas Bushart
Jonas Bushart
As seen in #201 it might be confusing why this code doesn't work: ```rust // Can't get this working at all #[serde_as(as = "BTreeMap")] pub map: BTreeMap, // Confusingly enough...
I want to create a plot using gnuplot and directly afterwards read the file and process it further. Something like: ```rust let fpath = Path::new("/tmp/plot.png"); let mut fg = Figure::new();...
TeXstudio already offers a LanguageTool integration, but it is currently not compatible with LanguageTool Plus. [LanguageTool Plus](https://languagetoolplus.com/) is a hosted service and offers additional rules compared to the free version....
I stumbled over two soundness issues of `futures-intrusive` which are currently unfixed. * [ ] https://github.com/Matthias247/futures-intrusive/issues/42 * [ ] https://github.com/Matthias247/futures-intrusive/issues/56
The last update (0.6.0) of `interment` notes in its changelog that it removed `LocalIntern` because it can be used to cause use-after-free errors. https://github.com/droundy/internment/blob/9270a4d05c6c18f89e7ecfb2ad3fe52250f6385f/CHANGELOG.md The type is removed in 0.6.0...
 This occurs with version 1.1.17 of the extension. Columns of type bytea are displayed as text (see screenshot). This makes it impossible to read the value...
After opening the issue about the `heapless` crate I was wondering why my CI setup didn't warn about the new advisory. From the code it looks I need to include...
Running "Format Document" on the following markdown file should align all rightmost `|` characters, but does not. To reproduce run "Format Document" on this file. My Markdown All in One...
Some warnings created by this action can be quite noisy, and there does not seem to be a way to silence certain error classes. It seems that in #16 this...
### Problem Lets say I have two crates, with these contents of `Cargo.toml`. The Rust code does not matter here. ```toml # foo/Cargo.toml [dependencies] serde = {version = "1.0.133", optional...