Skip to content

Commit

Permalink
Rollup merge of rust-lang#50456 - alexcrichton:update-cargo, r=alexcr…
Browse files Browse the repository at this point in the history
…ichton

Update the Cargo submodule

Hopefully brining in a few fixes to Cargo regressions!
  • Loading branch information
kennytm committed May 9, 2018
2 parents 8ff4b42 + 576aab9 commit e6a309e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/stdsimd
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 57 files
+8 −7 src/bin/cargo/command_prelude.rs
+2 −2 src/bin/cargo/commands/bench.rs
+1 −1 src/bin/cargo/commands/build.rs
+1 −1 src/bin/cargo/commands/check.rs
+1 −1 src/bin/cargo/commands/doc.rs
+2 −2 src/bin/cargo/commands/install.rs
+1 −1 src/bin/cargo/commands/run.rs
+1 −1 src/bin/cargo/commands/rustc.rs
+1 −1 src/bin/cargo/commands/rustdoc.rs
+2 −2 src/bin/cargo/commands/test.rs
+190 −0 src/cargo/core/compiler/build_config.rs
+145 −16 src/cargo/core/compiler/build_context/mod.rs
+25 −10 src/cargo/core/compiler/build_context/target_info.rs
+8 −7 src/cargo/core/compiler/compilation.rs
+6 −5 src/cargo/core/compiler/context/compilation_files.rs
+6 −12 src/cargo/core/compiler/context/mod.rs
+5 −6 src/cargo/core/compiler/context/unit_dependencies.rs
+10 −10 src/cargo/core/compiler/custom_build.rs
+1 −1 src/cargo/core/compiler/fingerprint.rs
+1 −2 src/cargo/core/compiler/job_queue.rs
+7 −204 src/cargo/core/compiler/mod.rs
+8 −3 src/cargo/core/features.rs
+4 −0 src/cargo/core/package.rs
+21 −1 src/cargo/core/package_id_spec.rs
+113 −28 src/cargo/core/profiles.rs
+0 −108 src/cargo/core/registry.rs
+26 −13 src/cargo/core/resolver/context.rs
+34 −2 src/cargo/core/source/mod.rs
+5 −5 src/cargo/ops/cargo_clean.rs
+41 −166 src/cargo/ops/cargo_compile.rs
+1 −1 src/cargo/ops/cargo_doc.rs
+7 −6 src/cargo/ops/cargo_fetch.rs
+81 −32 src/cargo/ops/cargo_output_metadata.rs
+2 −6 src/cargo/ops/cargo_package.rs
+21 −5 src/cargo/ops/cargo_run.rs
+1 −1 src/cargo/ops/mod.rs
+2 −4 src/cargo/sources/directory.rs
+2 −6 src/cargo/sources/git/source.rs
+2 −4 src/cargo/sources/path.rs
+2 −4 src/cargo/sources/registry/mod.rs
+2 −4 src/cargo/sources/replaced.rs
+7 −2 src/cargo/util/config.rs
+42 −8 src/cargo/util/toml/mod.rs
+1 −13 src/doc/src/reference/manifest.md
+4 −4 src/doc/src/reference/unstable.md
+1 −1 tests/testsuite/bench.rs
+174 −5 tests/testsuite/build_script.rs
+1 −1 tests/testsuite/doc.rs
+118 −42 tests/testsuite/freshness.rs
+1 −1 tests/testsuite/install.rs
+223 −2 tests/testsuite/metadata.rs
+7 −4 tests/testsuite/package.rs
+131 −3 tests/testsuite/profile_overrides.rs
+6 −2 tests/testsuite/profile_targets.rs
+25 −0 tests/testsuite/profiles.rs
+0 −6 tests/testsuite/resolve.rs
+33 −1 tests/testsuite/run.rs
2 changes: 1 addition & 1 deletion src/tools/rls
Submodule rls updated from 1263f1 to d2ade3

0 comments on commit e6a309e

Please sign in to comment.