Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 61 files
+0 −1 src/bin/cargo/commands/add.rs
+0 −1 src/bin/cargo/commands/bench.rs
+0 −1 src/bin/cargo/commands/build.rs
+0 −1 src/bin/cargo/commands/check.rs
+0 −1 src/bin/cargo/commands/clean.rs
+0 −1 src/bin/cargo/commands/doc.rs
+0 −1 src/bin/cargo/commands/fetch.rs
+0 −5 src/bin/cargo/commands/fix.rs
+0 −1 src/bin/cargo/commands/generate_lockfile.rs
+0 −8 src/bin/cargo/commands/install.rs
+0 −1 src/bin/cargo/commands/metadata.rs
+0 −1 src/bin/cargo/commands/package.rs
+0 −1 src/bin/cargo/commands/pkgid.rs
+0 −1 src/bin/cargo/commands/publish.rs
+0 −1 src/bin/cargo/commands/remove.rs
+0 −1 src/bin/cargo/commands/run.rs
+0 −1 src/bin/cargo/commands/rustc.rs
+0 −1 src/bin/cargo/commands/rustdoc.rs
+0 −1 src/bin/cargo/commands/test.rs
+0 −1 src/bin/cargo/commands/tree.rs
+0 −1 src/bin/cargo/commands/update.rs
+0 −1 src/bin/cargo/commands/vendor.rs
+13 −7 src/cargo/core/compiler/compilation.rs
+23 −6 src/cargo/core/compiler/job_queue/mod.rs
+10 −10 src/cargo/core/compiler/locking.rs
+3 −18 src/cargo/ops/cargo_install.rs
+0 −67 src/cargo/util/command_prelude.rs
+1 −1 src/doc/man/cargo-yank.md
+1 −1 src/doc/man/generated_txt/cargo-yank.txt
+1 −1 src/doc/src/commands/cargo-yank.md
+30 −0 src/doc/src/reference/build-script-examples.md
+13 −0 src/doc/src/reference/build-scripts.md
+6 −0 src/doc/src/reference/environment-variables.md
+1 −1 src/etc/man/cargo-yank.1
+54 −60 tests/testsuite/cargo_add/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_bench/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_build/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_check/help/stdout.term.svg
+7 −9 tests/testsuite/cargo_clean/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_doc/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_fetch/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_fix/help/stdout.term.svg
+13 −17 tests/testsuite/cargo_generate_lockfile/help/stdout.term.svg
+27 −29 tests/testsuite/cargo_install/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_metadata/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_package/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_pkgid/help/stdout.term.svg
+13 −15 tests/testsuite/cargo_publish/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_remove/help/stdout.term.svg
+9 −11 tests/testsuite/cargo_run/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_rustc/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_rustdoc/help/stdout.term.svg
+9 −11 tests/testsuite/cargo_test/help/stdout.term.svg
+7 −9 tests/testsuite/cargo_tree/help/stdout.term.svg
+9 −11 tests/testsuite/cargo_update/help/stdout.term.svg
+8 −10 tests/testsuite/cargo_vendor/help/stdout.term.svg
+10 −0 tests/testsuite/check.rs
+18 −0 tests/testsuite/cross_compile.rs
+68 −0 tests/testsuite/freshness.rs
+0 −530 tests/testsuite/lockfile_path.rs
+1 −1 tests/testsuite/standard_lib.rs
Loading