-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using the DepInfo
backend still uses -Z save-analysis
#106
Comments
I'm not entirely sure if this flag should stay. There might be some caching implications. That is, if you don't pass the flag, run |
I have a local copy of the repo removing the flag when the |
I did this experiment:
The unused dependency is detected in the second run. Is that OK or do you think I should try something more extensive? |
My concern was more what if you did, after removing the target dir, run |
it still warns me in both runs but the first run does the checks from scratch ( as expected ) and then the second run reuses the |
Hi, I'm not sure if this is intended or not but I found an upstream bug (binary-dep-depinfo) that causes an ICE on rustc with the
-Z save-analysis
flag on and by extension while callingcargo +nightly udeps
: rust-lang/rust#88536.I know that there is the
--backend depinfo
flag but it seems that the command executed by the compiler still includes thesave-anaysis
flag. Is this the intended behavior?The text was updated successfully, but these errors were encountered: