Skip to content

Commit

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

20 commits in a515d463427b3912ec0365d106791f88c1c14e1b..154fdac39ae9629954e19e9986fd2cf2cdd8d964
2024-07-02 20:53:36 +0000 to 2024-07-07 01:28:23 +0000
- test: relax redactions for rust-lang/rust (rust-lang/cargo#14203)
- use "bootstrap" instead of "rustbuild" (rust-lang/cargo#14207)
- test: migrate serveral files to snapbox (rust-lang/cargo#14180)
- Add rustdocflags to Unit's Debug impl (rust-lang/cargo#14201)
- Allow enabling `config-include` feature in config (rust-lang/cargo#14196)
- fix(test): Restore `does_not_contain` for check (rust-lang/cargo#14198)
- test: migrate patch, pkgid, proc_macro and progress to snapbox (rust-lang/cargo#14181)
- test: Migrate jobserver to snapbox (rust-lang/cargo#14191)
- chore(deps): update msrv (3 versions) to v1.77 (rust-lang/cargo#14186)
- test: migrate build_plan and build_script to snapbox (rust-lang/cargo#14193)
- test: migrate cfg and check to snapbox (rust-lang/cargo#14185)
- test: migrate install* and inheritable_workspace_fields to snapbox (rust-lang/cargo#14170)
- Pass rustflags to artifacts built with implicit targets when using target-applies-to-host (rust-lang/cargo#13900)
- test: Migrate network tests to snapbox (rust-lang/cargo#14187)
- test: migrate some files to snapbox (rust-lang/cargo#14113)
- test: Auto-redact `... after last build at ...`; Migrate `freshness` to Snapbox (rust-lang/cargo#14161)
- chore: fix some typos (rust-lang/cargo#14182)
- fix: improve message for inactive weak optional feature with edition2024 through unused dep collection (rust-lang/cargo#14026)
- test:migrate `doc/directory/docscrape` to snapbox (rust-lang/cargo#14171)
- test: Migrate git_auth to snapbox (rust-lang/cargo#14172)
  • Loading branch information
bors committed Jul 7, 2024
2 parents 0ca92de + d58a239 commit 20ae37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 55 files
+1 −1 Cargo.toml
+11 −0 crates/cargo-test-support/src/compare.rs
+0 −26 src/cargo/core/compiler/build_context/mod.rs
+29 −9 src/cargo/core/compiler/build_context/target_info.rs
+1 −1 src/cargo/core/compiler/build_runner/mod.rs
+1 −4 src/cargo/core/compiler/custom_build.rs
+4 −4 src/cargo/core/compiler/fingerprint/mod.rs
+2 −2 src/cargo/core/compiler/mod.rs
+3 −0 src/cargo/core/compiler/standard_lib.rs
+29 −0 src/cargo/core/compiler/unit.rs
+2 −0 src/cargo/core/compiler/unit_dependencies.rs
+35 −1 src/cargo/core/summary.rs
+8 −0 src/cargo/ops/cargo_compile/mod.rs
+6 −2 src/cargo/ops/cargo_compile/unit_generator.rs
+10 −7 src/cargo/util/context/mod.rs
+6 −2 src/cargo/util/lints.rs
+118 −18 src/cargo/util/toml/mod.rs
+3 −3 src/cargo/version.rs
+1 −1 src/doc/contrib/src/process/unstable.md
+1 −1 src/doc/src/reference/build-scripts.md
+1 −1 src/doc/src/reference/registry-index.md
+1 −1 src/doc/src/reference/resolver.md
+2 −2 src/doc/src/reference/semver.md
+2 −2 src/doc/src/reference/unstable.md
+144 −124 tests/testsuite/build_plan.rs
+845 −732 tests/testsuite/build_script.rs
+139 −101 tests/testsuite/cargo_command.rs
+47 −16 tests/testsuite/cargo_env_config.rs
+172 −204 tests/testsuite/cargo_features.rs
+17 −18 tests/testsuite/cargo_targets.rs
+73 −82 tests/testsuite/cfg.rs
+249 −160 tests/testsuite/check.rs
+165 −0 tests/testsuite/config_include.rs
+75 −93 tests/testsuite/directory.rs
+464 −354 tests/testsuite/doc.rs
+113 −102 tests/testsuite/docscrape.rs
+12 −6 tests/testsuite/features.rs
+700 −496 tests/testsuite/freshness.rs
+92 −46 tests/testsuite/git_auth.rs
+10 −13 tests/testsuite/https.rs
+243 −274 tests/testsuite/inheritable_workspace_fields.rs
+628 −525 tests/testsuite/install.rs
+344 −225 tests/testsuite/install_upgrade.rs
+92 −20 tests/testsuite/jobserver.rs
+195 −50 tests/testsuite/lints/unused_optional_dependencies.rs
+541 −518 tests/testsuite/patch.rs
+75 −76 tests/testsuite/pkgid.rs
+71 −26 tests/testsuite/proc_macro.rs
+28 −21 tests/testsuite/progress.rs
+100 −72 tests/testsuite/read_manifest.rs
+60 −28 tests/testsuite/rustdoc_extern_html.rs
+53 −0 tests/testsuite/rustflags.rs
+103 −90 tests/testsuite/ssh.rs
+105 −109 tests/testsuite/tool_paths.rs
+10 −11 tests/testsuite/warn_on_failure.rs

0 comments on commit 20ae37c

Please sign in to comment.