-
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.
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cargo
updated
23 files
+46 −0 | CONTRIBUTING.md | |
+2 −1 | src/bin/bench.rs | |
+1 −1 | src/bin/build.rs | |
+4 −0 | src/bin/check.rs | |
+2 −1 | src/bin/doc.rs | |
+2 −1 | src/bin/test.rs | |
+4 −0 | src/cargo/core/workspace.rs | |
+11 −6 | src/cargo/ops/cargo_compile.rs | |
+2 −2 | src/cargo/ops/cargo_doc.rs | |
+46 −13 | src/cargo/ops/cargo_rustc/context.rs | |
+18 −14 | src/cargo/ops/cargo_rustc/custom_build.rs | |
+3 −3 | src/cargo/ops/cargo_rustc/fingerprint.rs | |
+4 −4 | src/cargo/ops/cargo_rustc/mod.rs | |
+167 −19 | src/cargo/sources/git/utils.rs | |
+11 −84 | src/cargo/sources/registry/remote.rs | |
+14 −4 | src/cargo/util/config.rs | |
+8 −1 | src/cargo/util/lazy_cell.rs | |
+1 −1 | src/doc/book/src/reference/config.md | |
+1 −1 | src/doc/config.md | |
+15 −0 | src/doc/guide.md | |
+6 −3 | src/doc/manifest.md | |
+108 −0 | tests/small-fd-limits.rs | |
+96 −10 | tests/workspaces.rs |