Skip to content

Commit

Permalink
Rollup merge of rust-lang#54210 - alexcrichton:update-cargo, r=kennytm
Browse files Browse the repository at this point in the history
Update Cargo

Should bring in some nice progress bars for compilations!
  • Loading branch information
kennytm authored Sep 14, 2018
2 parents 585f39f + 7a1eed7 commit dd4f5a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 55 files
+0 −1 src/bin/cargo/cli.rs
+1 −0 src/bin/cargo/command_prelude.rs
+1 −1 src/bin/cargo/commands/doc.rs
+4 −13 src/cargo/core/compiler/build_context/mod.rs
+0 −3 src/cargo/core/compiler/job_queue.rs
+11 −21 src/cargo/core/compiler/mod.rs
+0 −2 src/cargo/core/features.rs
+35 −2 src/cargo/core/shell.rs
+18 −4 src/cargo/core/source/source_id.rs
+2 −1 src/cargo/ops/cargo_clean.rs
+14 −4 src/cargo/ops/cargo_compile.rs
+1 −0 src/cargo/ops/cargo_package.rs
+29 −0 src/cargo/util/rustc.rs
+10 −0 src/cargo/util/toml/mod.rs
+4 −4 src/doc/src/reference/specifying-dependencies.md
+0 −16 src/doc/src/reference/unstable.md
+35 −33 tests/testsuite/alt_registry.rs
+1 −1 tests/testsuite/bad_config.rs
+23 −23 tests/testsuite/bench.rs
+82 −64 tests/testsuite/build.rs
+3 −3 tests/testsuite/build_lib.rs
+30 −30 tests/testsuite/build_script.rs
+1 −1 tests/testsuite/cargo_command.rs
+1 −1 tests/testsuite/check.rs
+21 −21 tests/testsuite/cross_compile.rs
+8 −8 tests/testsuite/cross_publish.rs
+4 −4 tests/testsuite/directory.rs
+47 −22 tests/testsuite/doc.rs
+25 −25 tests/testsuite/features.rs
+9 −9 tests/testsuite/freshness.rs
+17 −17 tests/testsuite/git.rs
+19 −19 tests/testsuite/install.rs
+6 −6 tests/testsuite/local_registry.rs
+1 −1 tests/testsuite/new.rs
+15 −15 tests/testsuite/overrides.rs
+24 −24 tests/testsuite/package.rs
+30 −30 tests/testsuite/patch.rs
+32 −32 tests/testsuite/path.rs
+2 −2 tests/testsuite/profile_config.rs
+7 −7 tests/testsuite/profile_overrides.rs
+108 −108 tests/testsuite/profile_targets.rs
+21 −21 tests/testsuite/profiles.rs
+15 −15 tests/testsuite/publish.rs
+45 −45 tests/testsuite/registry.rs
+3 −3 tests/testsuite/rename_deps.rs
+18 −18 tests/testsuite/required_features.rs
+27 −27 tests/testsuite/run.rs
+26 −26 tests/testsuite/rustc.rs
+22 −22 tests/testsuite/rustdoc.rs
+2 −2 tests/testsuite/search.rs
+21 −11 tests/testsuite/support/mod.rs
+1 −1 tests/testsuite/support/publish.rs
+33 −33 tests/testsuite/test.rs
+8 −8 tests/testsuite/tool_paths.rs
+1 −1 tests/testsuite/workspaces.rs

0 comments on commit dd4f5a2

Please sign in to comment.