Skip to content

Commit

Permalink
Auto merge of rust-lang#136725 - weihanglo:update-cargo, r=weihanglo
Browse files Browse the repository at this point in the history
Update cargo

14 commits in 0e3d73849ab8cbbab3ec5c65cbd555586cb21339..2928e32734b04925ee51e1ae88bea9a83d2fd451
2025-02-01 20:14:40 +0000 to 2025-02-07 16:50:22 +0000
- Simplify backtrack (rust-lang/cargo#15150)
- Don't use on Solaris libc::LOCK_* which were removed from libc in ver… (rust-lang/cargo#15143)
- feat: emit error if package not found within workspace (rust-lang/cargo#15071)
- Make cache tracking resilient to unexpected files (rust-lang/cargo#15147)
- Small resolver cleanups (rust-lang/cargo#15040)
- feat: add `cargo pkgid` support for cargo-script (rust-lang/cargo#14961)
- Suggest similar feature names on CLI (rust-lang/cargo#15133)
- fix: Don't use "did you mean" in errors (rust-lang/cargo#15138)
- Fix changelog link (rust-lang/cargo#15142)
- chore(deps): update rust crate rand to 0.9.0 (rust-lang/cargo#15129)
- Remove the original changelog (rust-lang/cargo#15123)
- chore(deps): update rust crate gix to 0.70.0 (rust-lang/cargo#15128)
- allow windows reserved names in CI (rust-lang/cargo#15135)
- removed a word that was repeated (rust-lang/cargo#15136)
  • Loading branch information
bors committed Feb 8, 2025
2 parents 0148a2b + b14fb2d commit d2f335d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 46 files
+1 −6,153 CHANGELOG.md
+199 −118 Cargo.lock
+2 −2 Cargo.toml
+2 −2 README.md
+2 −2 benches/benchsuite/src/bin/capture-last-use.rs
+0 −5 crates/cargo-test-support/src/paths.rs
+0 −7 src/bin/cargo/commands/pkgid.rs
+5 −5 src/bin/cargo/commands/run.rs
+15 −15 src/bin/cargo/main.rs
+32 −14 src/cargo/core/global_cache_tracker.rs
+4 −2 src/cargo/core/package_id_spec.rs
+6 −1 src/cargo/core/profiles.rs
+13 −12 src/cargo/core/resolver/context.rs
+72 −13 src/cargo/core/resolver/dep_cache.rs
+55 −59 src/cargo/core/resolver/mod.rs
+3 −0 src/cargo/core/source_id.rs
+12 −13 src/cargo/core/workspace.rs
+1 −0 src/cargo/ops/cargo_clean.rs
+41 −9 src/cargo/ops/cargo_compile/packages.rs
+1 −1 src/cargo/ops/cargo_compile/unit_generator.rs
+1 −1 src/cargo/ops/cargo_output_metadata.rs
+5 −1 src/cargo/util/edit_distance.rs
+26 −9 src/cargo/util/flock.rs
+2 −2 src/cargo/util/network/retry.rs
+6 −2 src/cargo/util/toml/mod.rs
+1 −1 src/doc/src/reference/manifest.md
+2 −2 tests/testsuite/alt_registry.rs
+5 −5 tests/testsuite/artifact_dep.rs
+1 −1 tests/testsuite/bad_config.rs
+4 −4 tests/testsuite/build.rs
+22 −23 tests/testsuite/cargo_command.rs
+3 −3 tests/testsuite/clean.rs
+2 −0 tests/testsuite/features_namespaced.rs
+1 −1 tests/testsuite/fix.rs
+48 −0 tests/testsuite/global_cache_tracker.rs
+3 −3 tests/testsuite/help.rs
+1 −1 tests/testsuite/open_namespaces.rs
+171 −2 tests/testsuite/package_features.rs
+4 −4 tests/testsuite/pkgid.rs
+1 −1 tests/testsuite/profile_overrides.rs
+2 −2 tests/testsuite/publish.rs
+2 −2 tests/testsuite/registry.rs
+3 −3 tests/testsuite/run.rs
+154 −45 tests/testsuite/script.rs
+1 −1 tests/testsuite/tree.rs
+92 −0 tests/testsuite/workspaces.rs

0 comments on commit d2f335d

Please sign in to comment.