lolbinarycat
lolbinarycat
according to the grammar, all of the following are invalid queries: ``` foo // comment ``` ``` foo /* comment */ [bar] ```` ``` /* comment */ foo ``` ```...
I was trying to write my own combinator and was getting very confused as to why there were two different error types, and as to why `Check` didn't seem to...
Reproduction steps: 1. run `cargo crev review somecratename` 2. delete all non-comment lines 3. close the editor Expected outcome: stderr: aborted due to empty review exit status: non-zero Actual outcome:...
### Version ouch 0.6.1 ### Description If a filename ends in `.tgz`, but the actual format is `.tar.gz.gz`, this will lead to a very odd error: ``` [ERROR] numeric field...
if a poll stays open long enough, it may happen that the team that is voting will have new members join, or old members leave. when this happens, the the...
see [CVE-2025-62518](https://www.cve.org/CVERecord?id=CVE-2025-62518), [GHSA-j5gw-2vrg-8fgx](https://github.com/astral-sh/tokio-tar/security/advisories/GHSA-j5gw-2vrg-8fgx), and [this announcement blogpost](https://edera.dev/stories/tarmageddon). This should be added to the rustsec database so library maintainers will be informed about it when running `cargo audit`.
### Problem you are trying to solve If you try to run a shim from a toolchain that does not have that component, it's not immediatly obvious what the solution...
1. recommend `cargo install --locked fend` instead, the fact that respecting lockfiles isn't the default for cargo install is often considered a mistake, as it makes supply-chain attacks easier, since...
most "hasher" crates (eg. sha2) make their hashers also implement Write when the `std` feature is enabled, so you can just `io::copy` from a file to the hasher. the impl...