Jonas Bushart
Jonas Bushart
@pickfire There are some maintenance concerns which make me convinced a separate project is more beneficial. However, this issue is not the place to discuss these concerns.
`serde_bytes` only supports a few types and cannot support arbitrary data structures. You can use the [`serde_with::Bytes`](https://docs.rs/serde_with/latest/serde_with/struct.Bytes.html) type, which is more powerful than what `serde_bytes` offers and can be used...
Thanks for the info. Maybe I misunderstand how the `--deny` option is supposed to work. I would expect `--deny unsound` to deny any unsound informative advisories. That `--deny unsound` does...
> @brianbruggeman As a minor refinement, I'd consider changing `String::deserialize()` to `Cow::::deserialize()` to avoid allocations when possible (which should be in most cases). [Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=395e9cce2a3106427d02ca8fcaeb77db). @hniksic Unfortunately, that doesn't change anything....
1. Yes the `ä`s are indeed different (unless github normalizes the unicode input) and they should look identical. I have a small javascript snippet which shows the problems, especially regarding...
I basically have no knowledge about East Asian scripts and how they work in Unicode. I think there are halfwidth and fullwidth characters. The fullwidth characters mainly for East Asian...
I requested a way to silence reports in #143. In that case, I want to relax the requirements for CI code. Not all code needs to uphold the same quality...
> I'm also surprised the `Won't Fix` does not silence the alerts, Maybe I was a bit unclear on that point. Let me expand on that. I can select "Won't...
@laurentsimon Fixing the “wrong” fingerprints, as mentioned in the linked issue, would definitely lessen the impact of the Pinned-Dependencies check. I do not see this as a fix to this...
toml does not have a representation for "null". If you want to change the handling of `None`s for in all cases you will need to look into a modified `Serializer`....