Skip to content

Commit

Permalink
Update cargo, books
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Oct 16, 2019
1 parent 437ca55 commit 5bb05a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/doc/nomicon
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 61 files
+18 −0 crates/resolver-tests/tests/resolve.rs
+0 −1 src/bin/cargo/cli.rs
+0 −1 src/bin/cargo/commands/clippy.rs
+1 −3 src/bin/cargo/main.rs
+8 −16 src/cargo/core/compiler/build_config.rs
+1 −1 src/cargo/core/compiler/build_context/mod.rs
+13 −10 src/cargo/core/compiler/build_context/target_info.rs
+10 −0 src/cargo/core/compiler/context/compilation_files.rs
+1 −4 src/cargo/core/compiler/context/mod.rs
+15 −3 src/cargo/core/compiler/fingerprint.rs
+3 −0 src/cargo/core/compiler/layout.rs
+53 −95 src/cargo/core/compiler/mod.rs
+2 −2 src/cargo/core/compiler/output_depinfo.rs
+0 −2 src/cargo/core/features.rs
+1 −3 src/cargo/core/package.rs
+15 −15 src/cargo/core/profiles.rs
+14 −8 src/cargo/core/resolver/mod.rs
+1 −1 src/cargo/ops/cargo_clean.rs
+37 −36 src/cargo/ops/cargo_new.rs
+5 −7 src/cargo/ops/cargo_package.rs
+2 −2 src/cargo/ops/cargo_test.rs
+1 −1 src/cargo/ops/common_for_install_and_uninstall.rs
+33 −35 src/cargo/ops/registry.rs
+2 −4 src/cargo/sources/git/utils.rs
+1 −1 src/cargo/sources/registry/remote.rs
+26 −10 src/cargo/util/command_prelude.rs
+461 −0 src/cargo/util/config/de.rs
+109 −0 src/cargo/util/config/key.rs
+181 −548 src/cargo/util/config/mod.rs
+35 −0 src/cargo/util/config/path.rs
+202 −0 src/cargo/util/config/value.rs
+1 −1 src/cargo/util/errors.rs
+1 −1 src/cargo/util/network.rs
+54 −23 src/cargo/util/toml/mod.rs
+1 −0 src/doc/man/cargo-package.adoc
+2 −1 src/doc/man/generated/cargo-package.html
+4 −3 src/doc/src/guide/build-cache.md
+2 −0 src/doc/src/reference/config.md
+2 −1 src/doc/src/reference/environment-variables.md
+5 −24 src/doc/src/reference/unstable.md
+4 −3 src/etc/man/cargo-package.1
+2 −2 tests/testsuite/bad_config.rs
+42 −146 tests/testsuite/build.rs
+1 −1 tests/testsuite/build_lib.rs
+4 −4 tests/testsuite/build_script.rs
+86 −92 tests/testsuite/cache_messages.rs
+12 −1 tests/testsuite/check.rs
+3 −3 tests/testsuite/collisions.rs
+17 −13 tests/testsuite/config.rs
+1 −1 tests/testsuite/cross_compile.rs
+69 −0 tests/testsuite/features.rs
+15 −15 tests/testsuite/freshness.rs
+1 −0 tests/testsuite/patch.rs
+11 −11 tests/testsuite/profile_config.rs
+3 −3 tests/testsuite/profile_custom.rs
+65 −24 tests/testsuite/profile_overrides.rs
+6 −6 tests/testsuite/profiles.rs
+81 −0 tests/testsuite/publish.rs
+4 −4 tests/testsuite/run.rs
+14 −14 tests/testsuite/rustc.rs
+2 −0 tests/testsuite/workspaces.rs

0 comments on commit 5bb05a2

Please sign in to comment.