-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cargo
updated
18 files
+18 −2 | src/bin/cargo/commands/rustc.rs | |
+9 −0 | src/cargo/core/compiler/build_context/mod.rs | |
+13 −2 | src/cargo/core/compiler/mod.rs | |
+6 −5 | src/cargo/core/registry.rs | |
+27 −0 | src/cargo/ops/cargo_compile.rs | |
+1 −0 | src/cargo/ops/cargo_package.rs | |
+10 −0 | src/cargo/ops/cargo_test.rs | |
+87 −19 | src/cargo/ops/resolve.rs | |
+1 −0 | src/cargo/util/command_prelude.rs | |
+1 −0 | src/doc/book.toml | |
+7 −0 | src/doc/src/reference/profiles.md | |
+18 −0 | src/doc/src/reference/unstable.md | |
+1 −1 | tests/testsuite/clean.rs | |
+8 −0 | tests/testsuite/cross_compile.rs | |
+18 −2 | tests/testsuite/doc.rs | |
+6 −4 | tests/testsuite/lto.rs | |
+92 −40 | tests/testsuite/patch.rs | |
+222 −0 | tests/testsuite/rustc.rs |