Commit f257c40
committed
Auto merge of rust-lang#64150 - ehuss:update-cargo-books, r=alexcrichton
Update cargo, books
## cargo
8 commits in 22f7dd0495cd72ce2082d318d5a9b4dccb9c5b8c..fe0e5a48b75da2b405c8ce1ba2674e174ae11d5d
2019-08-27 16:10:51 +0000 to 2019-09-04 00:51:27 +0000
- Rename `--all` to `--workspace` (rust-lang/cargo#7241)
- Basic standard library support. (rust-lang/cargo#7216)
- Allow using 'config.toml' instead of just 'config' files. (rust-lang/cargo#7295)
- Retry on SSL Connect Error. (rust-lang/cargo#7318)
- minimal-copy `deserialize` for `InternedString` (rust-lang/cargo#7310)
- Fix typo in cargo vendor examples (rust-lang/cargo#7320)
- Fixes around multiple `[patch]` per crate (rust-lang/cargo#7303)
- Improve error messages on mkdir failure (rust-lang/cargo#7306)
## reference
7 commits in d191a0c..090c015
2019-08-15 08:42:23 +0200 to 2019-09-03 13:59:28 -0700
- Fix rust-lang/reference#664: Review Oxford comma usage. (rust-lang/reference#668)
- Fix some links. (rust-lang/reference#667)
- Remove trait object warning. (rust-lang/reference#666)
- Specify pattern types in `let` statements and `for` expressions (rust-lang/reference#663)
- Fix loop expression link. (rust-lang/reference#662)
- async-await initial reference material (rust-lang/reference#635)
- Correct errors in the reference of extern functions definitions and declarations (rust-lang/reference#652)
## rust-by-example
1 commits in 580839d90aacd537f0293697096fa8355bc4e673..e76be6b2dc84c6a992e186157efe29d625e29b94
2019-08-17 23:17:50 -0300 to 2019-09-03 07:42:26 -0300
- Change link to russian translation repository (rust-lang/rust-by-example#1245)
## embedded-book
1 commits in 432ca26686c11d396eed6a59499f93ce1bf2433c..5ca585c4a7552efb546e7681c3de0712f4ae4fdc
2019-08-09 23:20:22 +0000 to 2019-08-27 13:39:14 +0000
- Fixup book CI (rust-embedded/book#205)4 files changed
+4
-4
lines changedSubmodule embedded-book updated 1 file
Submodule reference updated from d191a0c to 090c015
Submodule rust-by-example updated 1 file
- ci/azure-test-all.yml+5
- crates/resolver-tests/src/lib.rs+1-1
- crates/resolver-tests/tests/resolve.rs-2
- src/bin/cargo/commands/bench.rs+3-3
- src/bin/cargo/commands/build.rs+3-3
- src/bin/cargo/commands/check.rs+3-3
- src/bin/cargo/commands/clippy.rs+3-3
- src/bin/cargo/commands/doc.rs+4-3
- src/bin/cargo/commands/test.rs+3-3
- src/cargo/core/compiler/build_config.rs+9-1
- src/cargo/core/compiler/build_context/mod.rs+1-15
- src/cargo/core/compiler/compilation.rs+2-2
- src/cargo/core/compiler/context/compilation_files.rs+1-3
- src/cargo/core/compiler/context/mod.rs+48-112
- src/cargo/core/compiler/custom_build.rs+10-13
- src/cargo/core/compiler/fingerprint.rs+25-28
- src/cargo/core/compiler/layout.rs+8-17
- src/cargo/core/compiler/links.rs+59
- src/cargo/core/compiler/mod.rs+26-34
- src/cargo/core/compiler/standard_lib.rs+165
- src/cargo/core/compiler/unit.rs+6
- src/cargo/core/compiler/unit_dependencies.rs+297-144
- src/cargo/core/dependency.rs+14-12
- src/cargo/core/features.rs+4
- src/cargo/core/interning.rs+44
- src/cargo/core/package.rs+12
- src/cargo/core/package_id.rs+6-2
- src/cargo/core/profiles.rs+1-1
- src/cargo/core/registry.rs+83-36
- src/cargo/core/resolver/dep_cache.rs+1-1
- src/cargo/core/source/mod.rs+7
- src/cargo/core/summary.rs+2-2
- src/cargo/core/workspace.rs+44-39
- src/cargo/ops/cargo_clean.rs+9-3
- src/cargo/ops/cargo_compile.rs+57-9
- src/cargo/ops/cargo_install.rs+1-1
- src/cargo/ops/cargo_new.rs+3-3
- src/cargo/ops/cargo_test.rs+1-1
- src/cargo/ops/vendor.rs+2-2
- src/cargo/sources/git/utils.rs+14-17
- src/cargo/sources/registry/index.rs+9-10
- src/cargo/sources/registry/mod.rs+11-10
- src/cargo/sources/registry/remote.rs+4-3
- src/cargo/util/command_prelude.rs+4-2
- src/cargo/util/config.rs+88-31
- src/cargo/util/flock.rs+7-6
- src/cargo/util/network.rs+1
- src/cargo/util/paths.rs+9
- src/cargo/util/toml/mod.rs+14-3
- src/cargo/util/vcs.rs+4-6
- src/doc/man/cargo-vendor.adoc+1-1
- src/doc/man/generated/cargo-bench.html+7-3
- src/doc/man/generated/cargo-build.html+7-3
- src/doc/man/generated/cargo-check.html+7-3
- src/doc/man/generated/cargo-doc.html+7-3
- src/doc/man/generated/cargo-fix.html+7-3
- src/doc/man/generated/cargo-test.html+7-3
- src/doc/man/options-packages.adoc+6-3
- src/doc/src/reference/manifest.md+2-2
- src/etc/cargo.bashcomp.sh+1-1
- src/etc/man/cargo-bench.1+8-3
- src/etc/man/cargo-build.1+8-3
- src/etc/man/cargo-check.1+8-3
- src/etc/man/cargo-doc.1+8-3
- src/etc/man/cargo-fix.1+8-3
- src/etc/man/cargo-test.1+8-3
- tests/testsuite/bad_config.rs+1-1
- tests/testsuite/bench.rs+3-3
- tests/testsuite/build.rs+9-9
- tests/testsuite/build_script.rs+59-1
- tests/testsuite/check.rs+2-2
- tests/testsuite/config.rs+134
- tests/testsuite/doc.rs+9-9
- tests/testsuite/features.rs+3-3
- tests/testsuite/freshness.rs+1-1
- tests/testsuite/login.rs+46
- tests/testsuite/main.rs+1
- tests/testsuite/metabuild.rs+2-2
- tests/testsuite/out_dir.rs+1-1
- tests/testsuite/patch.rs+159
- tests/testsuite/standard_lib.rs+272
- tests/testsuite/test.rs+9-9
- tests/testsuite/workspaces.rs+1-1
0 commit comments