Skip to content

Commit

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

8 commits in 6f06fe908a5ee0f415c187f868ea627e82efe07d..80d5b607dde6ef97dfff4e23923822c01d2bb036
2024-04-16 18:47:44 +0000 to 2024-04-19 18:39:22 +0000
- fix 13773 - 'cargo build' fails when list_files() with gix is triggered (rust-lang/cargo#13777)
- fix(toml): Don't crash on parse errors that point to multi-byte character (rust-lang/cargo#13780)
- fix(toml)!: Disallow source-less dependencies (rust-lang/cargo#13775)
- fix(msrv): Put MSRV-aware resolver behind a config (rust-lang/cargo#13769)
- fix(msrv): Error, rather than panic, on rust-version 'x' (rust-lang/cargo#13771)
- fix(credential): trim newlines in tokens from stdin (rust-lang/cargo#13770)
- test(msrv): Re-organize MSRV tests (rust-lang/cargo#13767)
- feat(install): Including Locking message (rust-lang/cargo#13764)

r? ghost
  • Loading branch information
bors committed Apr 19, 2024
2 parents f9b1614 + db881f6 commit c979885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 36 files
+11 −10 Cargo.lock
+1 −1 Cargo.toml
+8 −1 crates/cargo-test-support/src/git.rs
+3 −0 crates/cargo-util-schemas/Cargo.toml
+70 −10 crates/cargo-util-schemas/src/core/partial_version.rs
+45 −0 crates/cargo-util-schemas/src/manifest/rust_version.rs
+42 −6 src/cargo/core/workspace.rs
+1 −1 src/cargo/ops/registry/login.rs
+46 −17 src/cargo/ops/resolve.rs
+13 −0 src/cargo/util/context/mod.rs
+3 −6 src/cargo/util/toml/mod.rs
+14 −3 src/doc/src/reference/unstable.md
+6 −3 tests/testsuite/bad_config.rs
+54 −2 tests/testsuite/build.rs
+0 −9 tests/testsuite/cargo_add/empty_dep_table/in/Cargo.toml
+0 −1 tests/testsuite/cargo_add/empty_dep_table/in/src/lib.rs
+0 −32 tests/testsuite/cargo_add/empty_dep_table/mod.rs
+0 −9 tests/testsuite/cargo_add/empty_dep_table/out/Cargo.toml
+0 −27 tests/testsuite/cargo_add/empty_dep_table/stderr.term.svg
+0 −1 tests/testsuite/cargo_add/mod.rs
+4 −0 tests/testsuite/cargo_add/rust_version_ignore/mod.rs
+4 −0 tests/testsuite/cargo_add/rust_version_incompatible/mod.rs
+4 −0 tests/testsuite/cargo_add/rust_version_latest/mod.rs
+4 −0 tests/testsuite/cargo_add/rust_version_older/mod.rs
+4 −0 tests/testsuite/cargo_add/rustc_ignore/mod.rs
+4 −0 tests/testsuite/cargo_add/rustc_incompatible/mod.rs
+4 −0 tests/testsuite/cargo_add/rustc_latest/mod.rs
+4 −0 tests/testsuite/cargo_add/rustc_older/mod.rs
+19 −0 tests/testsuite/credential_process.rs
+2 −0 tests/testsuite/directory.rs
+6 −15 tests/testsuite/inheritable_workspace_fields.rs
+3 −0 tests/testsuite/install.rs
+1 −0 tests/testsuite/login.rs
+1 −0 tests/testsuite/publish_lockfile.rs
+1 −0 tests/testsuite/required_features.rs
+455 −234 tests/testsuite/rust_version.rs

0 comments on commit c979885

Please sign in to comment.