You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2022. It is now read-only.
I just build cargo-breaking from the source, and it failed to run on a very simple crate. The error is:
Caused by:
Compiling XXXXX v1.3.1 (/XXXX)
error: argument to `unpretty` must be one of `normal`, `identified`, `expanded`, `expanded,identified`, `expanded,hygiene`, `ast-tree`, `ast-tree,expanded`, `hir`, `hir,identified`, `hir,typed`, `hir-tree`, `thir-tree`, `mir` or `mir-cfg`; got everybody_loops
error: could not compile `XXXXX` due to previous error
In rust-lang/rust#93913, this option was removed. Pull request rust-lang/rust#94669 suggests that thir-tree is a replacement. When I changed that locally in my cargo-breaking build, it started working again.
I just build
cargo-breakingfrom the source, and it failed to run on a very simple crate. The error is:The root cause is here (in a call to
cargo):cargo-breaking/src/glue.rs
Line 20 in 56dafaf
In rust-lang/rust#93913, this option was removed. Pull request rust-lang/rust#94669 suggests that
thir-treeis a replacement. When I changed that locally in my cargo-breaking build, it started working again.