-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8 commits in 4ed54cecce3ce9ab6ff058781f4c8a500ee6b8b5..646e9a0b9ea8354cc409d05f10e8dc752c5de78e 2022-08-27 18:41:39 +0000 to 2022-09-02 14:29:28 +0000 - Support inheriting jobserver fd for external subcommands (rust-lang/cargo#10511) - refactor(cli): Lazy load config (rust-lang/cargo#11029) - chore: Don't show genned docs in ripgrep (rust-lang/cargo#11040) - Document private items for Cargo and publish under contributor guide (rust-lang/cargo#11019) - Add names to CI jobs (rust-lang/cargo#11039) - Rework test error handling (rust-lang/cargo#11028) - Very slight `cargo add` documentation improvements (rust-lang/cargo#11033) - Update compiling requirements. (rust-lang/cargo#11030)
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cargo
updated
25 files
+5 −0 | .github/workflows/contrib.yml | |
+13 −6 | .github/workflows/main.yml | |
+6 −0 | .ignore | |
+1 −1 | Cargo.toml | |
+35 −5 | README.md | |
+52 −32 | src/bin/cargo/cli.rs | |
+1 −8 | src/bin/cargo/commands/bench.rs | |
+17 −33 | src/bin/cargo/commands/help.rs | |
+2 −0 | src/bin/cargo/commands/mod.rs | |
+1 −15 | src/bin/cargo/commands/test.rs | |
+13 −21 | src/bin/cargo/main.rs | |
+68 −0 | src/cargo/lib.rs | |
+166 −70 | src/cargo/ops/cargo_test.rs | |
+13 −10 | src/cargo/ops/fix.rs | |
+1 −1 | src/cargo/ops/mod.rs | |
+2 −2 | src/cargo/ops/registry.rs | |
+0 −88 | src/cargo/util/errors.rs | |
+2 −2 | src/cargo/util/mod.rs | |
+5 −0 | src/doc/man/cargo-add.md | |
+4 −0 | src/doc/man/generated_txt/cargo-add.txt | |
+5 −0 | src/doc/src/commands/cargo-add.md | |
+3 −0 | src/etc/man/cargo-add.1 | |
+24 −3 | tests/testsuite/bench.rs | |
+78 −39 | tests/testsuite/jobserver.rs | |
+233 −23 | tests/testsuite/test.rs |