Sergey "Shnatsel" Davidoff

Results 942 comments of Sergey "Shnatsel" Davidoff

Right. `cargo +nightly auditable` still works but since the alias expands into `cargo auditable +nightly`, things break. I don't know if there's a way to do this with an alias...

No, unfortunately `RUSTC_WRAPPER` does not work. We need to wrap Cargo, not rustc.

On systems where bash is available, you can use this bash script: ```bash #!/bin/bash if [[ "$1" == +* ]]; then # special handling for +nightly: it needs to become...

This script always uses bash in a standalone process, and will work regardless of what your interactive shell is.

I don't think that is worth the trouble, and the Cargo team is spread thin as it is.

FYI, there is an open pull request for a security advisory about this issue: https://github.com/rustsec/advisory-db/pull/2181 I am not convinced about this particular use of MD5 being an issue, but I...

We could make the ID assigner fill in the date. That would be more robust and also less work for the maintainers.

Ah, this appears to be a regression. I've opened a PR to fix this: https://github.com/rustsec/rustsec/pull/1287

I'll try to deploy the update in the next few days. That should apply the change to all new files being published. Updating the `modified` field is trickier. We need...

Half the invocations have a hardcoded `stride = 1` (presumably for filtering horizontal edges) so a specialized implementation for that case should be beneficial. It is easy to vectorize since...