jyn

Results 249 issues of jyn

When validating a lot of URLs with `--check-http`, it's common to get '429 Too Many Requests'. It would be great to be able to ignore these. Alternatively, maybe `cargo-deadlinks` could...

C-enhancement
A-http-check

https://github.com/deadlinks/cargo-deadlinks/pull/74 fixed https://github.com/deadlinks/cargo-deadlinks/issues/56 in the sense that now all errors are always reported. However, the order of the errors is non-deterministic because deadlinks uses `walkdir` and rayon, which are non-deterministic....

C-enhancement

Say I want to write a function like this: ```rust pub(crate) fn override_frontend(&self, init: impl FnOnce(&mut TestFrontend)) -> &TestFrontend { /* ... */ } ``` Here's the current approach I...

When I try to run `cargo +nightly test`, I get a whole slew of errors: ``` error[E0557]: feature has been removed --> /home/joshua/.cargo/registry/src/github.com-1ecc6299db9ec823/mutagen-plugin-0.1.2/src/lib.rs:1:30 | 1 | #![feature(plugin_registrar, quote, rustc_private, custom_attribute)]...

You mentioned two things during your thesis defense: 1. There are two analyses that flowistry supports: whole-program analysis, and (very accurate) heuristics using the lifetime annotations people already provide for...

`Traceback (most recent call last): File "/usr/local/bin/classifier", line 289, in Classifier() File "/usr/local/bin/classifier", line 115, in __init__ self.checkconfig() File "/usr/local/bin/classifier", line 133, in checkconfig val = spl[1].replace(" ","") IndexError: list...

### Problem you are trying to solve Bootstrap in rust-lang/rust wants to have a version of rustfmt that's different than the bootstrap compiler toolchain. Right now, to manage it using...

enhancement
help wanted
E-mentor

**Problem** Rustup gives a "permission denied" error if you try to uninstall it after linking a custom toolchain. **Steps** ``` $ git clone https://github.com/rust-lang/rust $ cd rust $ cargo install...

bug
help wanted
E-mentor
O-windows

Right now, there are two main interfaces for running fixes: 1. `cargo fix [--tests|--benches|--lib] 2. `cargo clippy --fix` It's weird that they are so different - I would expect this...

Since https://github.com/rust-lang/rust/pull/77856, rustdoc has a machine applicable suggestion to use `` instead of `url`, to make it a hyperlink in the docs. But there is no way to actually apply...