Commit 2633e01
committed
Auto merge of rust-lang#133825 - weihanglo:update-cargo, r=weihanglo
Update cargo
17 commits in 4c39aaff66862cc0da52fe529aa1990bb8bb9a22..05f54fdc34310f458033af8a63ce1d699fae8bf6
2024-11-25 16:36:17 +0000 to 2024-12-03 03:14:12 +0000
- test(pgo): only run on nightly (rust-lang/cargo#14887)
- chore: Bump to 0.86.0; update changelog (rust-lang/cargo#14885)
- docs(ref): Finish a sentence on rust-versions (rust-lang/cargo#14884)
- chore(deps): update rust crate cargo_metadata to 0.19.0 (rust-lang/cargo#14878)
- chore(deps): update rust crate gix to 0.68.0 (rust-lang/cargo#14879)
- fix: Remove default registry reference in `info` cmd docs (rust-lang/cargo#14880)
- test(pgo): determine test runnability at compile time (rust-lang/cargo#14874)
- test: `requires` attribute accepts string literals for cmds (rust-lang/cargo#14875)
- chore(deps): update msrv (3 versions) to v1.81 (rust-lang/cargo#14871)
- chore(deps): update msrv (rust-lang/cargo#14867)
- fix(fix): Migrate cargo script manifests across editions (rust-lang/cargo#14864)
- feat(toml): Allow adding/removing from cargo scripts (rust-lang/cargo#14857)
- Add future-incompat warning against keywords in cfgs and add raw-idents (rust-lang/cargo#14671)
- test(build-std): download deps first (rust-lang/cargo#14861)
- test(pgo): ensure PGO works (rust-lang/cargo#14859)
- git-fetch-with-cli: Set `GIT_DIR` for bare repository compatibility (rust-lang/cargo#14860)
- fix(build-std): always link to std when testing proc-macros (rust-lang/cargo#14850)1 file changed
+1
-1
lines changed- .github/workflows/main.yml+1-1
- CHANGELOG.md+200-14
- Cargo.lock+184-164
- Cargo.toml+7-7
- crates/cargo-platform/Cargo.toml+1-1
- crates/cargo-platform/src/cfg.rs+110-10
- crates/cargo-platform/src/lib.rs+47-2
- crates/cargo-platform/tests/test_cfg.rs+37-3
- crates/cargo-test-macro/Cargo.toml+2-2
- crates/cargo-test-macro/src/lib.rs+13-3
- crates/cargo-test-support/Cargo.toml+2-2
- crates/cargo-util-schemas/Cargo.toml+2-2
- crates/cargo-util/Cargo.toml+2-2
- crates/crates-io/Cargo.toml+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+2-2
- src/bin/cargo/commands/info.rs+1-1
- src/bin/cargo/commands/remove.rs+16-16
- src/cargo/core/compiler/compilation.rs+4-1
- src/cargo/core/compiler/custom_build.rs+3-1
- src/cargo/ops/fix.rs+4-4
- src/cargo/sources/git/utils.rs+2-3
- src/cargo/util/context/target.rs+8-1
- src/cargo/util/toml/embedded.rs+100-82
- src/cargo/util/toml/mod.rs+3
- src/cargo/util/toml_mut/dependency.rs+2
- src/cargo/util/toml_mut/manifest.rs+91-3
- src/doc/man/cargo-info.md+3-3
- src/doc/man/generated_txt/cargo-info.txt+5-6
- src/doc/src/commands/cargo-info.md+3-3
- src/doc/src/reference/rust-version.md+1-1
- src/etc/man/cargo-info.1+3-3
- tests/build-std/main.rs+33
- tests/testsuite/cargo_add/mod.rs+3
- tests/testsuite/cargo_add/script_bare/in/cargo-test-fixture.rs+1
- tests/testsuite/cargo_add/script_bare/mod.rs+39
- tests/testsuite/cargo_add/script_bare/out/cargo-test-fixture.rs+6
- tests/testsuite/cargo_add/script_bare/stderr.term.svg+36
- tests/testsuite/cargo_add/script_frontmatter/in/cargo-test-fixture.rs+7
- tests/testsuite/cargo_add/script_frontmatter/mod.rs+39
- tests/testsuite/cargo_add/script_frontmatter/out/cargo-test-fixture.rs+10
- tests/testsuite/cargo_add/script_frontmatter/stderr.term.svg+31
- tests/testsuite/cargo_add/script_shebang/in/cargo-test-fixture.rs+3
- tests/testsuite/cargo_add/script_shebang/mod.rs+39
- tests/testsuite/cargo_add/script_shebang/out/cargo-test-fixture.rs+7
- tests/testsuite/cargo_add/script_shebang/stderr.term.svg+36
- tests/testsuite/cargo_info/help/stdout.term.svg+1-1
- tests/testsuite/cargo_init/simple_hg/mod.rs+1-1
- tests/testsuite/cargo_remove/last_dep/in/Cargo.toml+13
- tests/testsuite/cargo_remove/last_dep/in/src/lib.rs+1
- tests/testsuite/cargo_remove/last_dep/mod.rs+28
- tests/testsuite/cargo_remove/last_dep/out/Cargo.toml+10
- tests/testsuite/cargo_remove/last_dep/stderr.term.svg+27
- tests/testsuite/cargo_remove/mod.rs+3
- tests/testsuite/cargo_remove/script/in/cargo-remove-test-fixture.rs+23
- tests/testsuite/cargo_remove/script/mod.rs+40
- tests/testsuite/cargo_remove/script/out/cargo-remove-test-fixture.rs+22
- tests/testsuite/cargo_remove/script/stderr.term.svg+32
- tests/testsuite/cargo_remove/script_last/in/cargo-remove-test-fixture.rs+7
- tests/testsuite/cargo_remove/script_last/mod.rs+30
- tests/testsuite/cargo_remove/script_last/out/cargo-remove-test-fixture.rs+6
- tests/testsuite/cargo_remove/script_last/stderr.term.svg+32
- tests/testsuite/cfg.rs+138
- tests/testsuite/edition.rs+1-1
- tests/testsuite/fix.rs+59
- tests/testsuite/git.rs+4-4
- tests/testsuite/git_gc.rs+1-1
- tests/testsuite/main.rs+1
- tests/testsuite/new.rs+1-1
- tests/testsuite/pgo.rs+113
- tests/testsuite/profile_trim_paths.rs+19-7
- tests/testsuite/publish.rs+1-1
0 commit comments