Commit c6faa1b
committed
Auto merge of rust-lang#140876 - weihanglo:update-cargo, r=weihanglo
Update cargo
25 commits in 7918c7eb59614c39f1c4e27e99d557720976bdd7..056f5f4f3c100cb36b5e9aed2d20b9ea70aae295
2025-04-27 09:44:23 +0000 to 2025-05-09 14:54:18 +0000
- Revert "doc: Mention `XDG_DATA_HOME`" (rust-lang/cargo#15512)
- docs: update version notice for deprecation removal (rust-lang/cargo#15511)
- doc: Update instructions on using native-completions (rust-lang/cargo#15480)
- feat(network): use Retry-After header for HTTP 429 responses (rust-lang/cargo#15463)
- CI: Require schema job to pass (rust-lang/cargo#15504)
- chore(config): migrate renovate config (rust-lang/cargo#15501)
- Make cargo script ignore workspaces (rust-lang/cargo#15496)
- fix(rustc): Don't panic on unknown bins (rust-lang/cargo#15497)
- test: Remove unused nightly requirements (rust-lang/cargo#15498)
- Add support for `-Zembed-metadata` (rust-lang/cargo#15378)
- Fix tracking issue template link (rust-lang/cargo#15494)
- Refactor artifact deps in FeatureResolver::deps (rust-lang/cargo#15492)
- Improved error message for versions prefixed with `v` (rust-lang/cargo#15484)
- chore: fix some typos in comment (rust-lang/cargo#15485)
- fix: default to all targets when using `--edition` and ` --edition-idioms` in cargo fix (rust-lang/cargo#15192)
- Update fingerprint footnote (rust-lang/cargo#15478)
- feat(add): suggest similarly named features (rust-lang/cargo#15438)
- In package-workspace, keep dev-dependencies if they have a version (rust-lang/cargo#15470)
- docs: fix a typo in DependencyUI (rust-lang/cargo#15472)
- fix grammar, and remove confusing example (rust-lang/cargo#15457)
- Added tracing spans for rustc invocations (rust-lang/cargo#15464)
- Trivial tweaks to 'target_short_hash' (rust-lang/cargo#15461)
- chore(deps): update msrv (3 versions) to v1.84 (rust-lang/cargo#15456)
- feat(add/install): check if given crate argument would be valid with inserted @ symbol (rust-lang/cargo#15441)
- chang 1 tries to 1 try (rust-lang/cargo#15328)
r? ghost1 file changed
+1
-1
lines changed- .github/renovate.json5+6-6
- .github/workflows/main.yml+1
- Cargo.lock+1
- Cargo.toml+2-1
- crates/cargo-test-support/src/registry.rs+13
- crates/home/README.md+1-1
- src/bin/cargo/commands/fix.rs+5-2
- src/bin/cargo/commands/install.rs+23
- src/bin/cargo/commands/yank.rs+15
- src/cargo/core/compiler/build_context/target_info.rs+15-4
- src/cargo/core/compiler/build_runner/compilation_files.rs+4-3
- src/cargo/core/compiler/crate_type.rs+32
- src/cargo/core/compiler/fingerprint/mod.rs+1-1
- src/cargo/core/compiler/mod.rs+36-9
- src/cargo/core/compiler/unit.rs+7
- src/cargo/core/features.rs+2
- src/cargo/core/manifest.rs+11
- src/cargo/core/resolver/features.rs+62-69
- src/cargo/core/source_id.rs+10-2
- src/cargo/ops/cargo_add/crate_spec.rs+27-3
- src/cargo/ops/cargo_add/mod.rs+32-10
- src/cargo/ops/cargo_clean.rs+1-1
- src/cargo/ops/cargo_compile/unit_generator.rs+7-12
- src/cargo/ops/cargo_package/mod.rs+18-14
- src/cargo/util/network/retry.rs+93-6
- src/cargo/util/toml/mod.rs+8-1
- src/cargo/util/toml_mut/manifest.rs+1-1
- src/doc/contrib/src/process/unstable.md+1-1
- src/doc/src/reference/source-replacement.md+5-2
- src/doc/src/reference/unstable.md+21-3
- tests/testsuite/build.rs+88
- tests/testsuite/build_script.rs+1-1
- tests/testsuite/cargo/z_help/stdout.term.svg+24-22
- tests/testsuite/cargo_add/feature_suggestion_multiple/in/Cargo.toml+7
- tests/testsuite/cargo_add/feature_suggestion_multiple/in/src/lib.rs
- tests/testsuite/cargo_add/feature_suggestion_multiple/mod.rs+24
- tests/testsuite/cargo_add/feature_suggestion_multiple/stderr.term.svg+40
- tests/testsuite/cargo_add/feature_suggestion_none/in/Cargo.toml+7
- tests/testsuite/cargo_add/feature_suggestion_none/in/src/lib.rs
- tests/testsuite/cargo_add/feature_suggestion_none/mod.rs+24
- tests/testsuite/cargo_add/feature_suggestion_none/stderr.term.svg+38
- tests/testsuite/cargo_add/feature_suggestion_single/in/Cargo.toml+7
- tests/testsuite/cargo_add/feature_suggestion_single/in/src/lib.rs
- tests/testsuite/cargo_add/feature_suggestion_single/mod.rs+23
- tests/testsuite/cargo_add/feature_suggestion_single/stderr.term.svg+36
- tests/testsuite/cargo_add/features_error_activated_over_limit/stderr.term.svg+4-4
- tests/testsuite/cargo_add/features_error_deactivated_over_limit/stderr.term.svg+7-3
- tests/testsuite/cargo_add/features_unknown/stderr.term.svg+2-2
- tests/testsuite/cargo_add/features_unknown_no_features/stderr.term.svg+5-3
- tests/testsuite/cargo_add/missing_at_in_crate_spec/in+1
- tests/testsuite/cargo_add/missing_at_in_crate_spec/mod.rs+24
- tests/testsuite/cargo_add/missing_at_in_crate_spec/out/Cargo.toml+6
- tests/testsuite/cargo_add/missing_at_in_crate_spec/stderr.term.svg+31
- tests/testsuite/cargo_add/mod.rs+5
- tests/testsuite/cargo_add/prefixed_v_in_version/in+1
- tests/testsuite/cargo_add/prefixed_v_in_version/mod.rs+26
- tests/testsuite/cargo_add/prefixed_v_in_version/out/Cargo.toml+6
- tests/testsuite/cargo_add/prefixed_v_in_version/stderr.term.svg+37
- tests/testsuite/cargo_add/unknown_inherited_feature/stderr.term.svg+11-7
- tests/testsuite/fix.rs+100-4
- tests/testsuite/git_auth.rs+1-1
- tests/testsuite/install.rs+30
- tests/testsuite/lockfile_path.rs+1-1
- tests/testsuite/net_config.rs+2-2
- tests/testsuite/new.rs+1-1
- tests/testsuite/package.rs+71
- tests/testsuite/registry.rs+59-6
- tests/testsuite/rustc.rs+23
- tests/testsuite/script.rs+84-33
- tests/testsuite/update.rs+38
- tests/testsuite/yank.rs+68
0 commit comments