Skip to content

Commit

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

17 commits in 3ed207e416fb2f678a40cc79c02dcf4f936a21ce..bc89bffa5987d4af8f71011c7557119b39e44a65
2024-06-18 19:18:22 +0000 to 2024-06-22 00:36:36 +0000
- test: migrate weak_dep_features, workspaces and yank to snapbox (rust-lang/cargo#14111)
- test: migrate features and features(2|_namespaced) to snapbox (rust-lang/cargo#14100)
- test: Add auto-redaction for not found error (rust-lang/cargo#14124)
- test: migrate build to snapbox (rust-lang/cargo#14068)
- test: migrate unit_graph, update and vendor to snapbox (rust-lang/cargo#14119)
- fix(test): Un-redact Packaged files (rust-lang/cargo#14123)
- test: Auto-redact file number (rust-lang/cargo#14121)
- test: migrate lints_table and lints/(mod|unknown_lints) to snapbox (rust-lang/cargo#14104)
- Simplify checking feature syntax (rust-lang/cargo#14106)
- test: migrate testsuites to snapbox (rust-lang/cargo#14091)
- Make `-Cmetadata` consistent across platforms (rust-lang/cargo#14107)
- fix(toml): Warn when edition is unuset, even when MSRV is unset (rust-lang/cargo#14110)
- Add `CodeFix::apply_solution` and impl `Clone` (rust-lang/cargo#14092)
- test: migrate `cargo_alias_config&cargo_config/mod` to snapbox (rust-lang/cargo#14093)
- Simplify checking for dependency cycles (rust-lang/cargo#14089)
- test: Migrate `pub_priv.rs` to snapshot (rust-lang/cargo#14103)
- test: migrate rustdoc and rustdocflags to snapbox (rust-lang/cargo#14098)

<!--
r? ghost
-->
  • Loading branch information
bors committed Jun 22, 2024
2 parents f0aceed + 2c65a24 commit f1b0d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 37 files
+1 −1 Cargo.lock
+17 −0 crates/cargo-test-support/src/compare.rs
+1 −1 crates/rustfix/Cargo.toml
+13 −6 crates/rustfix/src/lib.rs
+14 −5 src/cargo/core/compiler/build_runner/compilation_files.rs
+26 −38 src/cargo/core/resolver/mod.rs
+17 −0 src/cargo/core/resolver/resolve.rs
+54 −95 src/cargo/core/summary.rs
+4 −0 src/cargo/util/graph.rs
+2 −2 src/cargo/util/toml/mod.rs
+1 −0 tests/testsuite/artifact_dep.rs
+1,073 −823 tests/testsuite/build.rs
+107 −102 tests/testsuite/cargo_alias_config.rs
+236 −180 tests/testsuite/cargo_config/mod.rs
+3 −5 tests/testsuite/config_include.rs
+0 −2 tests/testsuite/death.rs
+26 −0 tests/testsuite/edition.rs
+294 −236 tests/testsuite/features.rs
+389 −274 tests/testsuite/features2.rs
+280 −295 tests/testsuite/features_namespaced.rs
+51 −59 tests/testsuite/lints/mod.rs
+18 −21 tests/testsuite/lints/unknown_lints.rs
+93 −111 tests/testsuite/lints_table.rs
+32 −14 tests/testsuite/message_format.rs
+18 −19 tests/testsuite/precise_pre_release.rs
+95 −104 tests/testsuite/pub_priv.rs
+90 −118 tests/testsuite/rustdoc.rs
+78 −32 tests/testsuite/rustdocflags.rs
+1 −0 tests/testsuite/shell_quoting.rs
+191 −190 tests/testsuite/unit_graph.rs
+196 −228 tests/testsuite/update.rs
+78 −40 tests/testsuite/vendor.rs
+21 −12 tests/testsuite/verify_project.rs
+17 −10 tests/testsuite/version.rs
+128 −134 tests/testsuite/weak_dep_features.rs
+216 −217 tests/testsuite/workspaces.rs
+25 −15 tests/testsuite/yank.rs

0 comments on commit f1b0d54

Please sign in to comment.