Skip to content

Commit

Permalink
Update cargo.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwoerister committed Oct 1, 2019
1 parent 42ec683 commit e1d9f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 84 files
+92 −3 CHANGELOG.md
+4 −4 Cargo.toml
+2 −4 crates/cargo-test-support/src/lib.rs
+1 −1 crates/crates-io/Cargo.toml
+11 −2 src/bin/cargo/commands/bench.rs
+7 −1 src/bin/cargo/commands/build.rs
+2 −2 src/bin/cargo/commands/check.rs
+3 −1 src/bin/cargo/commands/clean.rs
+3 −1 src/bin/cargo/commands/clippy.rs
+3 −1 src/bin/cargo/commands/doc.rs
+2 −2 src/bin/cargo/commands/fix.rs
+10 −3 src/bin/cargo/commands/install.rs
+7 −1 src/bin/cargo/commands/run.rs
+7 −2 src/bin/cargo/commands/rustc.rs
+2 −0 src/bin/cargo/commands/rustdoc.rs
+13 −1 src/bin/cargo/commands/test.rs
+43 −38 src/cargo/core/compiler/build_config.rs
+63 −67 src/cargo/core/compiler/build_context/mod.rs
+18 −46 src/cargo/core/compiler/build_context/target_info.rs
+2 −2 src/cargo/core/compiler/build_plan.rs
+15 −8 src/cargo/core/compiler/compilation.rs
+128 −0 src/cargo/core/compiler/compile_kind.rs
+21 −51 src/cargo/core/compiler/context/compilation_files.rs
+23 −31 src/cargo/core/compiler/context/mod.rs
+12 −19 src/cargo/core/compiler/custom_build.rs
+2 −2 src/cargo/core/compiler/fingerprint.rs
+6 −5 src/cargo/core/compiler/job_queue.rs
+16 −22 src/cargo/core/compiler/layout.rs
+12 −43 src/cargo/core/compiler/mod.rs
+5 −10 src/cargo/core/compiler/standard_lib.rs
+2 −11 src/cargo/core/compiler/timings.rs
+3 −3 src/cargo/core/compiler/unit.rs
+10 −12 src/cargo/core/compiler/unit_dependencies.rs
+5 −0 src/cargo/core/features.rs
+20 −1 src/cargo/core/interning.rs
+365 −67 src/cargo/core/profiles.rs
+18 −13 src/cargo/core/resolver/context.rs
+1 −1 src/cargo/core/resolver/errors.rs
+24 −13 src/cargo/ops/cargo_clean.rs
+16 −19 src/cargo/ops/cargo_compile.rs
+10 −19 src/cargo/ops/cargo_doc.rs
+37 −35 src/cargo/ops/cargo_fetch.rs
+7 −9 src/cargo/ops/cargo_install.rs
+10 −1 src/cargo/ops/cargo_package.rs
+11 −19 src/cargo/ops/common_for_install_and_uninstall.rs
+37 −3 src/cargo/ops/registry.rs
+2 −2 src/cargo/sources/registry/mod.rs
+59 −4 src/cargo/util/command_prelude.rs
+26 −0 src/cargo/util/config.rs
+2 −2 src/cargo/util/dependency_queue.rs
+7 −0 src/cargo/util/network.rs
+1 −2 src/cargo/util/progress.rs
+3 −2 src/cargo/util/rustc.rs
+136 −34 src/cargo/util/toml/mod.rs
+7 −0 src/doc/src/reference/config.md
+60 −1 src/doc/src/reference/unstable.md
+9 −2 tests/testsuite/bad_config.rs
+23 −23 tests/testsuite/bench.rs
+0 −12 tests/testsuite/build.rs
+6 −6 tests/testsuite/build_script.rs
+106 −30 tests/testsuite/config.rs
+5 −5 tests/testsuite/cross_compile.rs
+1 −7 tests/testsuite/fix.rs
+25 −26 tests/testsuite/freshness.rs
+1 −1 tests/testsuite/git.rs
+1 −0 tests/testsuite/main.rs
+5 −1 tests/testsuite/member_errors.rs
+0 −20 tests/testsuite/message_format.rs
+1 −1 tests/testsuite/new.rs
+57 −0 tests/testsuite/patch.rs
+2 −2 tests/testsuite/path.rs
+1 −6 tests/testsuite/profile_config.rs
+477 −0 tests/testsuite/profile_custom.rs
+0 −36 tests/testsuite/profile_overrides.rs
+128 −104 tests/testsuite/profile_targets.rs
+1 −1 tests/testsuite/profiles.rs
+55 −0 tests/testsuite/publish_lockfile.rs
+22 −22 tests/testsuite/required_features.rs
+4 −4 tests/testsuite/rustflags.rs
+5 −1 tests/testsuite/search.rs
+2 −2 tests/testsuite/standard_lib.rs
+47 −47 tests/testsuite/test.rs
+1 −6 tests/testsuite/timings.rs
+2 −2 tests/testsuite/tool_paths.rs

0 comments on commit e1d9f82

Please sign in to comment.