Skip to content

Commit

Permalink
Update cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
weihanglo committed Jan 30, 2024
1 parent 5ad7454 commit b76b192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 77 files
+2 −2 Cargo.lock
+2 −2 crates/cargo-test-support/src/registry.rs
+1 −1 crates/cargo-util/src/process_builder.rs
+16 −14 src/bin/cargo/cli.rs
+1 −1 src/bin/cargo/commands/install.rs
+108 −3 src/bin/cargo/commands/run.rs
+11 −4 src/bin/cargo/main.rs
+2 −1 src/cargo/core/compiler/custom_build.rs
+8 −0 src/cargo/core/compiler/fingerprint/dirty_reason.rs
+49 −55 src/cargo/core/compiler/fingerprint/mod.rs
+2 −2 src/cargo/core/compiler/job_queue/job.rs
+2 −2 src/cargo/core/compiler/job_queue/mod.rs
+1 −1 src/cargo/core/compiler/mod.rs
+3 −5 src/cargo/core/shell.rs
+4 −5 src/cargo/ops/cargo_add/mod.rs
+45 −23 src/cargo/ops/cargo_compile/packages.rs
+3 −3 src/cargo/ops/common_for_install_and_uninstall.rs
+2 −3 src/cargo/ops/registry/search.rs
+44 −10 src/cargo/sources/registry/mod.rs
+17 −7 src/cargo/util/config/mod.rs
+27 −10 src/cargo/util/semver_ext.rs
+1 −1 src/cargo/version.rs
+4 −0 src/doc/man/cargo-update.md
+5 −0 src/doc/man/generated_txt/cargo-update.txt
+4 −1 src/doc/src/commands/cargo-update.md
+6 −5 src/doc/src/reference/config.md
+7 −23 src/doc/src/reference/registry-authentication.md
+3 −1 src/doc/src/reference/resolver.md
+4 −0 src/etc/man/cargo-update.1
+2 −2 tests/build-std/main.rs
+6 −6 tests/testsuite/alt_registry.rs
+32 −32 tests/testsuite/bad_config.rs
+7 −7 tests/testsuite/build.rs
+28 −28 tests/testsuite/build_script.rs
+14 −14 tests/testsuite/cargo_alias_config.rs
+7 −7 tests/testsuite/cargo_env_config.rs
+1 −1 tests/testsuite/cargo_features.rs
+1 −1 tests/testsuite/cargo_install/help/stdout.log
+2 −2 tests/testsuite/check_cfg.rs
+62 −55 tests/testsuite/config.rs
+6 −6 tests/testsuite/config_cli.rs
+14 −14 tests/testsuite/config_include.rs
+10 −10 tests/testsuite/credential_process.rs
+3 −3 tests/testsuite/cross_compile.rs
+1 −1 tests/testsuite/custom_target.rs
+4 −4 tests/testsuite/directory.rs
+3 −3 tests/testsuite/freshness.rs
+7 −4 tests/testsuite/git.rs
+3 −3 tests/testsuite/git_auth.rs
+1 −1 tests/testsuite/help.rs
+5 −5 tests/testsuite/install.rs
+3 −3 tests/testsuite/local_registry.rs
+1 −1 tests/testsuite/login.rs
+1 −1 tests/testsuite/metabuild.rs
+2 −2 tests/testsuite/net_config.rs
+1 −1 tests/testsuite/new.rs
+1 −1 tests/testsuite/offline.rs
+1 −1 tests/testsuite/old_cargos.rs
+1 −1 tests/testsuite/out_dir.rs
+12 −5 tests/testsuite/path.rs
+4 −4 tests/testsuite/paths.rs
+21 −21 tests/testsuite/profile_config.rs
+1 −1 tests/testsuite/profiles.rs
+6 −6 tests/testsuite/progress.rs
+3 −3 tests/testsuite/publish.rs
+2 −2 tests/testsuite/registry.rs
+51 −5 tests/testsuite/run.rs
+5 −5 tests/testsuite/rustdoc_extern_html.rs
+2 −2 tests/testsuite/rustdocflags.rs
+28 −28 tests/testsuite/rustflags.rs
+99 −9 tests/testsuite/script.rs
+1 −1 tests/testsuite/source_replacement.rs
+1 −1 tests/testsuite/test.rs
+15 −15 tests/testsuite/tool_paths.rs
+103 −0 tests/testsuite/update.rs
+4 −4 tests/testsuite/vendor.rs
+4 −2 tests/testsuite/version.rs

0 comments on commit b76b192

Please sign in to comment.