Skip to content

Commit

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

16 commits in a9a418d1a22f29e7dfd034e3b93f15657e608a29..eaee77dc1584be45949b75e4c4c9a841605e3a4b
2024-09-15 19:13:12 +0000 to 2024-09-19 21:10:23 +0000
- fix(complete): Harden `--target` completions (rust-lang/cargo#14564)
- Cleanup duplicated check-cfg lint logic (rust-lang/cargo#14567)
- Revert "remove reference to incomplete crates.io feature from docs" (rust-lang/cargo#14562)
- feat: Add custom completer for `cargo help <TAB>` (rust-lang/cargo#14557)
- docs(unstable): Expand on completion documentation (rust-lang/cargo#14563)
- feat: Add custom completer for `cargo build --example=<TAB>` (rust-lang/cargo#14531)
- remove reference to incomplete crates.io feature from docs (rust-lang/cargo#14561)
- fix(complete): Fix problems on my machine (rust-lang/cargo#14558)
- feat: Add custom completer for completing benchmark names (rust-lang/cargo#14532)
- refactor(info): Use the `shell.note` to print the note (rust-lang/cargo#14554)
- feat: Add custom completer for completing test names (rust-lang/cargo#14548)
- Suggest `cargo info` command in the `cargo search` result (rust-lang/cargo#14537)
- feat: Add custom completer for completing target triple (rust-lang/cargo#14535)
- feat: Add custom completer for `cargo -Z <TAB>` (rust-lang/cargo#14536)
- feat: Add custom completer for completing installed binaries (rust-lang/cargo#14534)
- feat: Add custom completer for completing bin names (rust-lang/cargo#14533)

r? ghost
  • Loading branch information
bors committed Sep 20, 2024
2 parents da88968 + 2fa97d7 commit c0838c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 35 files
+8 −8 Cargo.lock
+2 −2 Cargo.toml
+9 −1 src/bin/cargo/cli.rs
+13 −1 src/bin/cargo/commands/help.rs
+30 −1 src/bin/cargo/commands/uninstall.rs
+1 −1 src/cargo/core/compiler/build_runner/mod.rs
+0 −22 src/cargo/core/compiler/fingerprint/mod.rs
+6 −33 src/cargo/core/compiler/mod.rs
+1 −0 src/cargo/ops/mod.rs
+5 −13 src/cargo/ops/registry/info/view.rs
+8 −0 src/cargo/ops/registry/search.rs
+166 −19 src/cargo/util/command_prelude.rs
+26 −3 src/cargo/util/toml/mod.rs
+22 −5 src/doc/src/reference/unstable.md
+5 −2 tests/testsuite/cargo_info/specify_version_within_ws_and_match_with_lockfile/stderr.term.svg
+2 −5 tests/testsuite/cargo_info/specify_version_within_ws_and_match_with_lockfile/stdout.term.svg
+5 −2 tests/testsuite/cargo_info/transitive_dependency_within_ws/direct1-stderr.term.svg
+2 −5 tests/testsuite/cargo_info/transitive_dependency_within_ws/direct1-stdout.term.svg
+27 −0 tests/testsuite/cargo_info/transitive_dependency_within_ws/direct2-stderr.term.svg
+2 −5 tests/testsuite/cargo_info/transitive_dependency_within_ws/direct2-stdout.term.svg
+3 −3 tests/testsuite/cargo_info/transitive_dependency_within_ws/mod.rs
+27 −0 tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive1-stderr.term.svg
+2 −5 tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive1-stdout.term.svg
+27 −0 tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive2-stderr.term.svg
+2 −5 tests/testsuite/cargo_info/transitive_dependency_within_ws/transitive2-stdout.term.svg
+5 −2 tests/testsuite/cargo_info/transitive_dependency_within_ws/ws-stderr.term.svg
+2 −5 tests/testsuite/cargo_info/transitive_dependency_within_ws/ws-stdout.term.svg
+5 −2 tests/testsuite/cargo_info/within_ws/stderr.term.svg
+2 −5 tests/testsuite/cargo_info/within_ws/stdout.term.svg
+4 −2 tests/testsuite/cargo_info/within_ws_without_lockfile/stderr.term.svg
+2 −5 tests/testsuite/cargo_info/within_ws_without_lockfile/stdout.term.svg
+5 −2 tests/testsuite/cargo_info/without_requiring_registry_auth/stderr.term.svg
+2 −5 tests/testsuite/cargo_info/without_requiring_registry_auth/stdout.term.svg
+10 −4 tests/testsuite/check_cfg.rs
+16 −1 tests/testsuite/search.rs

0 comments on commit c0838c8

Please sign in to comment.