Skip to content

Commit

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

14 commits in 2ce45605d9db521b5fd6c1211ce8de6055fdb24e..3e428a38a34e820a461d2cc082e726d3bda71bcb
2024-01-04 18:04:13 +0000 to 2024-01-09 20:46:36 +0000
- refactor: replace `iter_join` with `itertools::join` (rust-lang/cargo#13275)
- docs(unstable): doc comments for items and fields (rust-lang/cargo#13274)
- crates-io: Set `Content-Type: application/json` only for requests with a body payload (rust-lang/cargo#13264)
- fix: only inherit workspace package table if the new package is a member (rust-lang/cargo#13261)
- feat(cli): add colors to `-Zhelp` console output (rust-lang/cargo#13269)
- chore(deps): update msrv (rust-lang/cargo#13266)
- refactor(toml): Make it more obvious to update package-dependent fields (rust-lang/cargo#13267)
- chore(ci): Fix MSRV:3 updates (rust-lang/cargo#13268)
- chore(ci): Shot-in-the-dark fix for MSRV updating (rust-lang/cargo#13265)
- fix: set OUT_DIR for all units with build scripts (rust-lang/cargo#13204)
- fix(manifest): Provide unused key warnings for lints table (rust-lang/cargo#13262)
- test(manifest): Verify we warn on unused workspace.package fields (rust-lang/cargo#13263)
- docs(changelog): Call out cargo-new lockfile change (rust-lang/cargo#13260)
- chore: Add dependency dashboard (rust-lang/cargo#13255)

r? ghost
  • Loading branch information
bors committed Jan 10, 2024
2 parents 9480767 + 5b4b7b7 commit 9273d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 39 files
+5 −5 .github/renovate.json5
+2 −0 CHANGELOG.md
+7 −7 Cargo.lock
+2 −2 Cargo.toml
+2 −2 crates/cargo-platform/Cargo.toml
+2 −1 crates/cargo-test-support/src/lib.rs
+95 −19 crates/cargo-util-schemas/src/manifest.rs
+1 −1 crates/crates-io/Cargo.toml
+3 −1 crates/crates-io/lib.rs
+2 −2 crates/home/Cargo.toml
+2 −2 crates/rustfix/Cargo.toml
+2 −2 credential/cargo-credential-1password/Cargo.toml
+2 −2 credential/cargo-credential/Cargo.toml
+18 −22 src/bin/cargo/cli.rs
+27 −20 src/cargo/core/compiler/context/mod.rs
+4 −10 src/cargo/core/compiler/future_incompat.rs
+6 −3 src/cargo/core/compiler/mod.rs
+84 −54 src/cargo/core/features.rs
+81 −69 src/cargo/ops/cargo_new.rs
+0 −27 src/cargo/util/mod.rs
+2 −43 src/cargo/util/toml/mod.rs
+1 −1 src/doc/src/reference/registry-web-api.md
+1 −0 tests/testsuite/cargo/mod.rs
+13 −0 tests/testsuite/cargo/z_help/mod.rs
+0 −0 tests/testsuite/cargo/z_help/stderr.log
+36 −0 tests/testsuite/cargo/z_help/stdout.log
+9 −0 tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/in/Cargo.toml
+1 −1 tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/mod.rs
+8 −1 tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/Cargo.toml
+8 −0 tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/bar/Cargo.toml
+0 −0 tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/bar/src/main.rs
+0 −21 tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/foo/Cargo.toml
+1 −1 tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/stderr.log
+1 −1 tests/testsuite/clean.rs
+7 −58 tests/testsuite/help.rs
+31 −0 tests/testsuite/inheritable_workspace_fields.rs
+76 −0 tests/testsuite/lints.rs
+46 −0 tests/testsuite/test.rs
+4 −5 tests/testsuite/workspaces.rs

0 comments on commit 9273d63

Please sign in to comment.