GitHub's default timeout is 6 hours. Recently some of my GitHub Actions
jobs have started randomly stalling for that long, which is inconvenient
because it ties up a chunk of my runner quota. It apepars to be very
rare for a job to recover after stalling. It's better to time out
quicker and retry on a different runner.
warning: lint `clippy::let_underscore_drop` has been renamed to `let_underscore_drop`
--> src/main.rs:5:5
|
5 | clippy::let_underscore_drop,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `let_underscore_drop`
|
= note: `#[warn(renamed_and_removed_lints)]` on by default
https://github.com/rust-lang/rust-clippy/issues/9710
error[E0382]: use of moved value: `rustfmt`
--> src/main.rs:244:47
|
238 | if let Some(rustfmt) = rustfmt.or_else(which_rustfmt) {
| ------- move occurs because `rustfmt` has type `PathBuf`, which does not implement the `Copy` trait
...
244 | let output = Command::new(rustfmt)
| ^^^^^^^ value moved here, in previous iteration of loop
Delete the first paragraph of LICENSE-MIT (an inaccurate
pseudo-copyright line), leaving only the text of the MIT license.
Nothing about the license of cargo-expand has changed, only our
understanding of how to correctly communicate that license has changed.
This mirrors an equivalent change applied in the rust-lang/rust
repository years ago.
error: boolean to int conversion using if
--> src/main.rs:85:13
|
85 | / if status.success() {
86 | | 0
87 | | } else {
88 | | 1
89 | | }
| |_____________^ help: replace with from: `i32::from(!status.success())`
|
= note: `-D clippy::bool-to-int-with-if` implied by `-D clippy::all`
= note: `!status.success() as i32` or `(!status.success()).into()` can also be valid options
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_to_int_with_if
error: borrow as raw pointer
--> src/main.rs:515:24
|
515 | let sanity_check = &*null_hook as *const PanicHook;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `std::ptr::addr_of!(*null_hook)`
|
= note: `-D clippy::borrow-as-ptr` implied by `-D clippy::pedantic`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#borrow_as_ptr