Skip to content

Commit

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

14 commits in cf53cc54bb593b5ec3dc2be4b1702f50c36d24d5..e75214ea4936d2f2c909a71a1237042cc0e14b07
2024-10-18 13:56:15 +0000 to 2024-10-25 16:34:32 +0000
- refactor(env): remove unnecessary clones (rust-lang/cargo#14730)
- test(install): Verify 2024 edition / resolver=3 doesn't affect resolution (rust-lang/cargo#14724)
- Fix: trace `config` `[env]` table in dep-info. (rust-lang/cargo#14701)
- Added unstable-schema generation for Cargo.toml (rust-lang/cargo#14683)
- fix: add source replacement info when no matching package found (rust-lang/cargo#14715)
- feat(complete): Include descriptions in zsh (rust-lang/cargo#14726)
- refactor(fingerprint): avoid unnecessary fopen calls (rust-lang/cargo#14728)
- docs(resolver): Make room for v3 resolver (rust-lang/cargo#14725)
- test: add fixes in the sat resolver (rust-lang/cargo#14707)
- docs(ci): Don't constrainty latest_deps job by MSRV (rust-lang/cargo#14711)
- refactor: use `Iterator::is_sorted` (rust-lang/cargo#14702)
- refactor(rustfix): minor refactors (rust-lang/cargo#14710)
- chore(deps): update msrv (rust-lang/cargo#14705)
- fix(renovate): Switch matchPackageNames to matchDepNames (rust-lang/cargo#14704)
  • Loading branch information
bors committed Oct 26, 2024
2 parents 54761cb + 9ebba2f commit a06b7cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 43 files
+2 −2 .github/renovate.json5
+85 −23 Cargo.lock
+5 −4 Cargo.toml
+2 −2 crates/cargo-test-macro/Cargo.toml
+1 −1 crates/cargo-test-support/Cargo.toml
+25 −1 crates/cargo-test-support/src/registry.rs
+7 −2 crates/cargo-util-schemas/Cargo.toml
+1,485 −0 crates/cargo-util-schemas/manifest.schema.json
+2 −0 crates/cargo-util-schemas/src/lib.rs
+64 −0 crates/cargo-util-schemas/src/manifest/mod.rs
+54 −0 crates/cargo-util-schemas/src/schema.rs
+2 −2 crates/cargo-util/Cargo.toml
+2 −2 crates/crates-io/Cargo.toml
+27 −32 crates/resolver-tests/src/sat.rs
+1 −1 crates/rustfix/Cargo.toml
+1 −3 crates/rustfix/src/lib.rs
+76 −85 crates/rustfix/src/replace.rs
+2 −2 credential/cargo-credential-libsecret/Cargo.toml
+2 −2 credential/cargo-credential-macos-keychain/Cargo.toml
+2 −2 credential/cargo-credential-wincred/Cargo.toml
+26 −21 src/cargo/core/compiler/fingerprint/mod.rs
+3 −5 src/cargo/core/compiler/mod.rs
+7 −1 src/cargo/core/resolver/errors.rs
+8 −5 src/cargo/ops/cargo_add/mod.rs
+1 −2 src/cargo/ops/cargo_new.rs
+1 −1 src/cargo/sources/git/utils.rs
+8 −7 src/cargo/util/context/environment.rs
+45 −32 src/cargo/util/context/mod.rs
+1 −2 src/cargo/util/toml_mut/dependency.rs
+0 −16 src/cargo/util/toml_mut/mod.rs
+5 −0 src/doc/src/guide/continuous-integration.md
+3 −7 src/doc/src/reference/resolver.md
+1 −1 tests/testsuite/build.rs
+165 −0 tests/testsuite/cargo_env_config.rs
+2 −2 tests/testsuite/directory.rs
+1 −1 tests/testsuite/local_registry.rs
+9 −11 tests/testsuite/offline.rs
+6 −6 tests/testsuite/package.rs
+1 −1 tests/testsuite/publish.rs
+17 −17 tests/testsuite/registry.rs
+80 −0 tests/testsuite/rust_version.rs
+43 −0 tests/testsuite/source_replacement.rs
+3 −3 tests/testsuite/update.rs

0 comments on commit a06b7cb

Please sign in to comment.