Skip to content
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 #126816

Merged
merged 1 commit into from
Jun 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading