-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Update Cargo.lock #140631
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
Update Cargo.lock #140631
Conversation
To get rid of a duplicated `object` transitive dep (I am forward porting rust-gpu to latest nightly)
rustbot has assigned @Mark-Simulacrum. Use |
These commits modify the If this was unintentional then you should revert the changes before this PR is merged. |
This seems to have both removed some duplicate deps and added some new ones. I don't know if you want me to update various crates so there are no new dupes or if they are ok as-is. Happy to do whatever. |
Hmm, I guess the bot would have run tomorrow (https://github.com/rust-lang/rust/blob/master/.github/workflows/dependencies.yml) |
I think should be mostly subsumed by #140353? |
Yep, looks like it! Sorry for the noise. |
Ran `cargo update -p backtrace`. This is needed to forward port the rust-gpu compiler backend. Subsumes rust-lang#140631. Was supposed to be fixed by rust-lang#140353, but there were test failures and the fix was backed out.
Ran `cargo update -p backtrace`. This is needed to forward port the rust-gpu compiler backend. Subsumes rust-lang#140631. Was supposed to be fixed by rust-lang#140353, but there were test failures and the fix was backed out.
…acrum Update `backtrace` in Cargo.lock Ran `cargo update -p backtrace`. This is needed to forward port the rust-gpu compiler backend. Subsumes rust-lang#140631. Was supposed to be fixed by rust-lang#140353, but there were test failures and the backtrace update was backed out.
Gets rid of a duplicated
object
transitive dep (I need this for forward porting rust-gpu to latest nightly). This PR is just the result of runningcargo update
.I tried to make this narrow and just update the crates that depend on
object
transitively (cargo update -p ar_archive_writer -p backtrace -p run_make_support -p rustc_codegen_llvm -p rustc_codegen_ssa -p rustc_target -p thorin-dwp
) and that didn't work.I asked in #t-compiler/help > Updating rustc's Cargo.lock if there is a better process than just running
cargo update
, as it seems pretty blunt.