Commit 9273d63
committed
Auto merge of rust-lang#119794 - weihanglo:update-cargo, r=weihanglo
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? ghost1 file changed
+1
-1
lines changed- .github/renovate.json5+5-5
- CHANGELOG.md+2
- Cargo.lock+7-7
- Cargo.toml+2-2
- crates/cargo-platform/Cargo.toml+2-2
- crates/cargo-test-support/src/lib.rs+2-1
- crates/cargo-util-schemas/src/manifest.rs+95-19
- crates/crates-io/Cargo.toml+1-1
- crates/crates-io/lib.rs+3-1
- 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+2-2
- src/bin/cargo/cli.rs+18-22
- src/cargo/core/compiler/context/mod.rs+27-20
- src/cargo/core/compiler/future_incompat.rs+4-10
- src/cargo/core/compiler/mod.rs+6-3
- src/cargo/core/features.rs+84-54
- src/cargo/ops/cargo_new.rs+81-69
- src/cargo/util/mod.rs-27
- src/cargo/util/toml/mod.rs+2-43
- src/doc/src/reference/registry-web-api.md+1-1
- tests/testsuite/cargo/mod.rs+1
- tests/testsuite/cargo/z_help/mod.rs+13
- tests/testsuite/cargo/z_help/stderr.log
- tests/testsuite/cargo/z_help/stdout.log+36
- tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/in/Cargo.toml+9
- tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/mod.rs+1-1
- tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/Cargo.toml+8-1
- tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/bar/Cargo.toml+8
- tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/bar/src/main.rs
- tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/out/foo/Cargo.toml-21
- tests/testsuite/cargo_new/not_inherit_workspace_package_table_if_not_members/stderr.log+1-1
- tests/testsuite/clean.rs+1-1
- tests/testsuite/help.rs+7-58
- tests/testsuite/inheritable_workspace_fields.rs+31
- tests/testsuite/lints.rs+76
- tests/testsuite/test.rs+46
- tests/testsuite/workspaces.rs+4-5
0 commit comments