This repository was archived by the owner on May 28, 2025. It is now read-only.
Commit 5e469eb
committed
Auto merge of rust-lang#124572 - weihanglo:update-cargo, r=weihanglo
Update cargo
15 commits in b60a1555155111e962018007a6d0ef85207db463..6087566b3fa73bfda29702632493e938b12d19e5
2024-04-26 16:37:29 +0000 to 2024-04-30 20:45:20 +0000
- fix(cargo-fix): dont fix into standard library (rust-lang/cargo#13792)
- refactor: Move diagnostic printing to Shell (rust-lang/cargo#13813)
- Populate git information when building Cargo from Rust's source tarball (rust-lang/cargo#13832)
- docs: fix several typos found by `typos-cli` (rust-lang/cargo#13831)
- fix(alias): Aliases without subcommands should not panic (rust-lang/cargo#13819)
- fix(toml): Improve granularity of traces (rust-lang/cargo#13830)
- fix(toml): Warn, rather than fail publish, if a target is excluded (rust-lang/cargo#13713)
- test(cargo-lints): Add a test to ensure cap-lints works (rust-lang/cargo#13829)
- fix(toml)!: Remove support for inheriting badges (rust-lang/cargo#13788)
- chore(ci): Don't check `cargo` against beta channel (rust-lang/cargo#13827)
- Fix target entry in .gitignore (rust-lang/cargo#13817)
- Bump to 0.81.0; update changelog (rust-lang/cargo#13823)
- Add failing test: artifact_dep_target_specified (rust-lang/cargo#13816)
- fix(cargo-lints): Don't always inherit workspace lints (rust-lang/cargo#13812)
- Update SleepTraker returns_in_order unit test (rust-lang/cargo#13811)
r? ghost1 file changed
+1
-1
lines changed- .gitignore+5-5
- CHANGELOG.md+180-4
- Cargo.lock+2-2
- Cargo.toml+2-2
- build.rs+66-15
- crates/cargo-util-schemas/Cargo.toml+1-1
- crates/cargo-util-schemas/src/manifest/mod.rs+16-16
- crates/xtask-bump-check/src/xtask.rs+13-4
- src/bin/cargo/cli.rs+7-1
- src/cargo/core/features.rs+2-2
- src/cargo/core/manifest.rs+6
- src/cargo/core/shell.rs+14
- src/cargo/core/workspace.rs+35-20
- src/cargo/ops/cargo_package.rs+5-1
- src/cargo/ops/fix.rs+43-8
- src/cargo/sources/registry/mod.rs+1-1
- src/cargo/util/cache_lock.rs+1-1
- src/cargo/util/lints.rs+12-28
- src/cargo/util/network/sleep.rs+10-8
- src/cargo/util/toml/mod.rs+118-54
- src/cargo/util/toml/targets.rs+39-61
- src/doc/man/cargo-update.md+1-1
- src/doc/man/generated_txt/cargo-update.txt+1-1
- src/doc/src/commands/cargo-update.md+1-1
- src/etc/man/cargo-update.1+1-1
- tests/testsuite/artifact_dep.rs+59
- tests/testsuite/cargo_alias_config.rs+24
- tests/testsuite/features2.rs+10
- tests/testsuite/features_namespaced.rs+20
- tests/testsuite/fix.rs+327
- tests/testsuite/inheritable_workspace_fields.rs+49-26
- tests/testsuite/lints_table.rs+96
- tests/testsuite/package.rs+1.2k-7
- tests/testsuite/publish.rs+30
- tests/testsuite/weak_dep_features.rs+10
0 commit comments