Skip to content

Commit

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

14 commits in d14c85f4e6e7671673b1a1bc87231ff7164761e1..2fc85d15a542bfb610aff7682073412cf635352f
2023-09-05 22:28:10 +0000 to 2023-09-09 01:49:46 +0000
- feat: Stabilize lints (rust-lang/cargo#12648)
- Ues strip_prefix for cleaner code (rust-lang/cargo#12631)
- fix: don't print _TOKEN suggestion when not applicable (rust-lang/cargo#12644)
- Bump cargo-credential-1password to v0.4.0 (rust-lang/cargo#12641)
- refactor: put `Source` trait under `cargo::sources` (rust-lang/cargo#12527)
- Error out if `cargo clean --doc` is mixed with `-p`. (rust-lang/cargo#12637)
- Add wrappers around std::fs::metadata (rust-lang/cargo#12636)
- Add with_stdout_unordered. (rust-lang/cargo#12635)
- Fix example for creating a git project test. (rust-lang/cargo#12632)
- Read/write the encoded `cargo update --precise` in the same place (rust-lang/cargo#12629)
- docs(guide): Apply feedback on CI (rust-lang/cargo#12630)
- fix: improve warning for both token & credential-provider (rust-lang/cargo#12626)
- Skip clean up `profile.release.package."*"` (rust-lang/cargo#12624)
- Add MSRV validation GitHub Action for cargo-credential (rust-lang/cargo#12623)
  • Loading branch information
bors committed Sep 9, 2023
2 parents 6cc1898 + 252fb60 commit bfcc360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 68 files
+9 −0 .github/workflows/main.yml
+3 −3 Cargo.lock
+1 −1 crates/cargo-platform/Cargo.toml
+2 −2 crates/cargo-platform/examples/matches.rs
+1 −2 crates/cargo-platform/src/lib.rs
+1 −1 crates/cargo-test-support/src/git.rs
+15 −0 crates/cargo-test-support/src/lib.rs
+5 −2 crates/cargo-test-support/src/publish.rs
+22 −9 crates/cargo-util/src/paths.rs
+2 −1 crates/resolver-tests/src/lib.rs
+1 −1 crates/xtask-bump-check/src/xtask.rs
+1 −1 credential/cargo-credential-1password/Cargo.toml
+1 −0 credential/cargo-credential/Cargo.toml
+7 −2 src/bin/cargo/commands/remove.rs
+8 −7 src/bin/cargo/main.rs
+2 −1 src/cargo/core/compiler/future_incompat.rs
+2 −2 src/cargo/core/mod.rs
+2 −2 src/cargo/core/package.rs
+2 −2 src/cargo/core/package_id.rs
+4 −1 src/cargo/core/registry.rs
+2 −3 src/cargo/core/resolver/dep_cache.rs
+3 −3 src/cargo/core/resolver/encode.rs
+2 −1 src/cargo/core/resolver/errors.rs
+51 −10 src/cargo/core/source_id.rs
+2 −2 src/cargo/lib.rs
+1 −1 src/cargo/ops/cargo_add/mod.rs
+10 −1 src/cargo/ops/cargo_clean.rs
+12 −13 src/cargo/ops/cargo_generate_lockfile.rs
+2 −1 src/cargo/ops/cargo_install.rs
+4 −5 src/cargo/ops/cargo_new.rs
+3 −1 src/cargo/ops/common_for_install_and_uninstall.rs
+1 −1 src/cargo/ops/registry/mod.rs
+1 −1 src/cargo/ops/registry/publish.rs
+2 −2 src/cargo/ops/resolve.rs
+2 −1 src/cargo/sources/config.rs
+4 −2 src/cargo/sources/directory.rs
+4 −1 src/cargo/sources/git/source.rs
+11 −3 src/cargo/sources/mod.rs
+4 −2 src/cargo/sources/path.rs
+7 −6 src/cargo/sources/registry/http_remote.rs
+3 −15 src/cargo/sources/registry/index.rs
+4 −2 src/cargo/sources/registry/mod.rs
+4 −2 src/cargo/sources/replaced.rs
+2 −18 src/cargo/sources/source.rs
+81 −35 src/cargo/util/auth/mod.rs
+2 −3 src/cargo/util/config/de.rs
+1 −2 src/cargo/util/rustc.rs
+13 −58 src/cargo/util/toml/mod.rs
+4 −4 src/doc/src/guide/continuous-integration.md
+41 −0 src/doc/src/reference/manifest.md
+5 −93 src/doc/src/reference/unstable.md
+28 −0 src/doc/src/reference/workspaces.md
+1 −3 tests/testsuite/cargo_new/inherit_workspace_lints/mod.rs
+1 −0 tests/testsuite/cargo_remove/mod.rs
+13 −0 tests/testsuite/cargo_remove/skip_gc_glob_profile/in/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/skip_gc_glob_profile/in/src/lib.rs
+25 −0 tests/testsuite/cargo_remove/skip_gc_glob_profile/mod.rs
+10 −0 tests/testsuite/cargo_remove/skip_gc_glob_profile/out/Cargo.toml
+1 −0 tests/testsuite/cargo_remove/skip_gc_glob_profile/stderr.log
+0 −0 tests/testsuite/cargo_remove/skip_gc_glob_profile/stdout.log
+10 −0 tests/testsuite/clean.rs
+51 −3 tests/testsuite/credential_process.rs
+3 −3 tests/testsuite/install.rs
+26 −135 tests/testsuite/lints.rs
+2 −4 tests/testsuite/lto.rs
+1 −1 tests/testsuite/profile_config.rs
+2 −1 tests/testsuite/search.rs
+1 −2 tests/testsuite/ssh.rs

0 comments on commit bfcc360

Please sign in to comment.