Skip to content
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
Update cargo submodule
  • Loading branch information
weihanglo committed Sep 16, 2025
commit a4e8d6d79d52da36f92d9e10b3fee5e024c55ade
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 67 files
+1 −0 .github/workflows/main.yml
+2 −2 Cargo.lock
+1 −1 Cargo.toml
+29 −28 src/bin/cargo/cli.rs
+64 −54 src/cargo/core/compiler/future_incompat.rs
+17 −5 src/cargo/core/registry.rs
+7 −6 src/cargo/ops/cargo_compile/mod.rs
+3 −3 src/cargo/ops/cargo_update.rs
+1 −1 src/cargo/ops/registry/info/view.rs
+12 −5 src/cargo/ops/registry/publish.rs
+18 −8 src/cargo/ops/resolve.rs
+2 −2 src/cargo/sources/registry/mod.rs
+73 −70 src/cargo/util/command_prelude.rs
+123 −21 src/cargo/util/frontmatter.rs
+17 −9 src/cargo/util/progress.rs
+14 −7 src/cargo/util/toml/embedded.rs
+40 −10 src/cargo/util/toml/mod.rs
+4 −68 src/doc/README.md
+1 −0 src/doc/contrib/src/SUMMARY.md
+110 −0 src/doc/contrib/src/documentation/index.md
+1 −0 src/doc/src/SUMMARY.md
+70 −0 src/doc/src/guide/build-performance.md
+1 −0 src/doc/src/guide/index.md
+1 −1 src/doc/src/reference/environment-variables.md
+2 −2 src/doc/src/reference/registry-index.md
+27 −2 src/doc/src/reference/resolver.md
+6 −6 tests/testsuite/alt_registry.rs
+2 −2 tests/testsuite/artifact_dep.rs
+2 −2 tests/testsuite/cargo_features.rs
+2 −2 tests/testsuite/cargo_info/specify_version_within_ws_and_match_with_lockfile/stderr.term.svg
+2 −2 tests/testsuite/cargo_info/transitive_dependency_within_ws/direct1-stderr.term.svg
+2 −2 tests/testsuite/cargo_info/transitive_dependency_within_ws/direct2-stderr.term.svg
+2 −2 tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive1-stderr.term.svg
+2 −2 tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive2-stderr.term.svg
+2 −2 tests/testsuite/cargo_info/transitive_dependency_within_ws/ws-stderr.term.svg
+2 −2 tests/testsuite/cargo_info/within_ws/stderr.term.svg
+2 −2 tests/testsuite/cargo_info/within_ws_without_lockfile/stderr.term.svg
+2 −2 tests/testsuite/cargo_info/without_requiring_registry_auth/stderr.term.svg
+4 −4 tests/testsuite/credential_process.rs
+2 −2 tests/testsuite/cross_publish.rs
+6 −3 tests/testsuite/features.rs
+4 −4 tests/testsuite/features_namespaced.rs
+70 −120 tests/testsuite/future_incompat_report.rs
+10 −10 tests/testsuite/inheritable_workspace_fields.rs
+24 −12 tests/testsuite/patch.rs
+72 −72 tests/testsuite/publish.rs
+12 −6 tests/testsuite/replace.rs
+2 −1 tests/testsuite/rustdocflags.rs
+4 −2 tests/testsuite/rustflags.rs
+8 −1 tests/testsuite/script/rustc_fixtures/dot-in-infostring-leading.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/dot-in-infostring-non-leading.stderr
+6 −1 tests/testsuite/script/rustc_fixtures/extra-after-end.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/frontmatter-whitespace-2.stderr
+8 −1 tests/testsuite/script/rustc_fixtures/hyphen-in-infostring-leading.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/hyphen-in-infostring-non-leading.stderr
+8 −1 tests/testsuite/script/rustc_fixtures/infostring-fail.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/mismatch-1.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/mismatch-2.stderr
+7 −0 tests/testsuite/script/rustc_fixtures/multifrontmatter.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/unclosed-1.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/unclosed-2.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/unclosed-3.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/unclosed-4.stderr
+7 −1 tests/testsuite/script/rustc_fixtures/unclosed-5.stderr
+2 −2 tests/testsuite/source_replacement.rs
+2 −2 tests/testsuite/update.rs
+2 −2 tests/testsuite/weak_dep_features.rs
Loading