Skip to content

Commit

Permalink
Update cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
weihanglo committed Sep 9, 2023
1 parent 38bbc2c commit 252fb60
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 252fb60

Please sign in to comment.