Skip to content

Commit

Permalink
Auto merge of rust-lang#132829 - weihanglo:update-cargo, r=weihanglo
Browse files Browse the repository at this point in the history
Update cargo

16 commits in 0310497822a7a673a330a5dd068b7aaa579a265e..4a2d8dc636445b276288543882e076f254b3ae95
2024-11-01 19:27:56 +0000 to 2024-11-09 19:10:33 +0000
- test: adjust `cargo_test_env` to unblock rust submodule update (rust-lang/cargo#14803)
- feat(warnings): add build.warnings option (rust-lang/cargo#14388)
- Revert "feat: Add `CARGO_RUSTC_CURRENT_DIR`" (rust-lang/cargo#14799)
- CI: make the `lint-docs` job required (rust-lang/cargo#14797)
- Switch CI from bors to merge queue (rust-lang/cargo#14718)
- docs(test):  Document Execs assertions based on port effort (rust-lang/cargo#14793)
- fix(test): Make redactions consistent with snapbox (rust-lang/cargo#14790)
- test(gc): Update remaining unordered tests to snapbox (rust-lang/cargo#14785)
- Normalize the `target` paths (rust-lang/cargo#14497)
- rustfix: replace special-case duplicate handling with error (rust-lang/cargo#14782)
- test: Update some emaining unordered tests to snapbox (rust-lang/cargo#14781)
- Change config paths to only check CARGO_HOME for cargo-script (rust-lang/cargo#14749)
- Enable transfer feature in triagebot (rust-lang/cargo#14777)
- Add transactional semantics to `rustfix` (rust-lang/cargo#14747)
- doc: fix `GlobalContext` reference (rust-lang/cargo#14773)
- chore: update handlebars to v6, fix build error (rust-lang/cargo#14772)
  • Loading branch information
bors committed Nov 10, 2024
2 parents 4adafcf + be30861 commit 303fc05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 69 files
+27 −37 .github/workflows/main.yml
+23 −7 Cargo.lock
+3 −3 Cargo.toml
+46 −284 crates/cargo-test-support/src/compare.rs
+0 −49 crates/cargo-test-support/src/diff.rs
+157 −71 crates/cargo-test-support/src/lib.rs
+2 −5 crates/mdman/src/hbs.rs
+1 −1 crates/rustfix/Cargo.toml
+9 −4 crates/rustfix/src/error.rs
+27 −16 crates/rustfix/src/lib.rs
+203 −146 crates/rustfix/src/replace.rs
+2 −6 src/bin/cargo/commands/run.rs
+4 −0 src/cargo/core/compiler/compilation.rs
+11 −5 src/cargo/core/compiler/job_queue/mod.rs
+7 −12 src/cargo/core/compiler/mod.rs
+2 −0 src/cargo/core/features.rs
+6 −2 src/cargo/ops/cargo_compile/mod.rs
+10 −14 src/cargo/ops/fix.rs
+23 −0 src/cargo/util/context/mod.rs
+4 −4 src/cargo/util/toml/mod.rs
+32 −8 src/cargo/util/toml/targets.rs
+1 −1 src/doc/contrib/src/implementation/console.md
+0 −1 src/doc/src/reference/environment-variables.md
+20 −0 src/doc/src/reference/unstable.md
+33 −49 tests/testsuite/artifact_dep.rs
+185 −0 tests/testsuite/binary_name.rs
+4 −262 tests/testsuite/build.rs
+0 −1 tests/testsuite/build_script.rs
+0 −1 tests/testsuite/build_script_extra_link_arg.rs
+0 −1 tests/testsuite/cache_messages.rs
+8 −6 tests/testsuite/cargo/z_help/stdout.term.svg
+0 −1 tests/testsuite/cargo_command.rs
+0 −8 tests/testsuite/check.rs
+1 −23 tests/testsuite/check_cfg.rs
+6 −3 tests/testsuite/clean.rs
+0 −1 tests/testsuite/collisions.rs
+0 −1 tests/testsuite/features2.rs
+0 −1 tests/testsuite/fetch.rs
+0 −3 tests/testsuite/fix.rs
+12 −12 tests/testsuite/freshness.rs
+12 −12 tests/testsuite/freshness_checksum.rs
+0 −3 tests/testsuite/future_incompat_report.rs
+0 −1 tests/testsuite/git_auth.rs
+59 −52 tests/testsuite/global_cache_tracker.rs
+0 −3 tests/testsuite/install.rs
+0 −1 tests/testsuite/lto.rs
+1 −0 tests/testsuite/main.rs
+0 −2 tests/testsuite/message_format.rs
+0 −3 tests/testsuite/metabuild.rs
+0 −2 tests/testsuite/offline.rs
+0 −1 tests/testsuite/package.rs
+0 −1 tests/testsuite/package_features.rs
+0 −2 tests/testsuite/profile_config.rs
+0 −1 tests/testsuite/profile_overrides.rs
+0 −2 tests/testsuite/profile_targets.rs
+0 −2 tests/testsuite/profile_trim_paths.rs
+0 −4 tests/testsuite/profiles.rs
+0 −1 tests/testsuite/progress.rs
+0 −1 tests/testsuite/publish.rs
+0 −2 tests/testsuite/rustc.rs
+0 −2 tests/testsuite/rustc_info_cache.rs
+0 −3 tests/testsuite/rustdoc_extern_html.rs
+33 −9 tests/testsuite/script.rs
+0 −1 tests/testsuite/search.rs
+0 −3 tests/testsuite/standard_lib.rs
+21 −11 tests/testsuite/test.rs
+0 −2 tests/testsuite/warn_on_failure.rs
+221 −0 tests/testsuite/warning_override.rs
+2 −0 triagebot.toml

0 comments on commit 303fc05

Please sign in to comment.