-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #134747 - weihanglo:update-cargo, r=weihanglo
Update cargo 6 commits in 652623b779c88fe44afede28bf7f1c9c07812511..c86f4b3a1b153218e6e50861214b0b4b4e695f23 2024-12-20 15:44:42 +0000 to 2024-12-24 17:49:48 +0000 - fix(package): check dirtiness of path fields in manifest (rust-lang/cargo#14966) - test: make path arguments more generic and flexible (rust-lang/cargo#14979) - Moved manifest metadata tracking from fingerprint to dep info (rust-lang/cargo#14973) - fix: assure possibly blocking non-files (like FIFOs) won't be picked up for publishing. (rust-lang/cargo#14977) - simplify SourceID Hash (rust-lang/cargo#14800) - upgrade `gix` to the latest release 0.69. (rust-lang/cargo#14975)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cargo
updated
19 files
+61 −38 | Cargo.lock | |
+1 −1 | Cargo.toml | |
+7 −7 | crates/cargo-test-support/src/lib.rs | |
+7 −34 | src/cargo/core/compiler/compilation.rs | |
+5 −1 | src/cargo/core/compiler/fingerprint/dep_info.rs | |
+0 −2 | src/cargo/core/compiler/fingerprint/dirty_reason.rs | |
+14 −19 | src/cargo/core/compiler/fingerprint/mod.rs | |
+81 −0 | src/cargo/core/manifest.rs | |
+10 −9 | src/cargo/core/source_id.rs | |
+38 −1 | src/cargo/ops/cargo_package.rs | |
+1 −1 | src/cargo/sources/git/oxide.rs | |
+3 −1 | src/cargo/sources/git/utils.rs | |
+6 −2 | src/cargo/sources/path.rs | |
+1 −1 | tests/testsuite/binary_name.rs | |
+2 −2 | tests/testsuite/dep_info.rs | |
+99 −34 | tests/testsuite/freshness.rs | |
+1 −52 | tests/testsuite/freshness_checksum.rs | |
+38 −0 | tests/testsuite/git.rs | |
+152 −0 | tests/testsuite/package.rs |