Skip to content

Commit

Permalink
Auto merge of rust-lang#64150 - ehuss:update-cargo-books, r=alexcrichton
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
bors committed Sep 4, 2019
2 parents c6e9c76 + 74ccd08 commit f257c40
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/doc/embedded-book
Submodule embedded-book updated 1 files
+2 −3 ci/install.sh
2 changes: 1 addition & 1 deletion src/doc/reference
2 changes: 1 addition & 1 deletion src/doc/rust-by-example
Submodule rust-by-example updated 1 files
+2 −2 README.md
2 changes: 1 addition & 1 deletion src/tools/cargo
Submodule cargo updated 83 files
+5 −0 ci/azure-test-all.yml
+1 −1 crates/resolver-tests/src/lib.rs
+0 −2 crates/resolver-tests/tests/resolve.rs
+3 −3 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
+4 −3 src/bin/cargo/commands/doc.rs
+3 −3 src/bin/cargo/commands/test.rs
+9 −1 src/cargo/core/compiler/build_config.rs
+1 −15 src/cargo/core/compiler/build_context/mod.rs
+2 −2 src/cargo/core/compiler/compilation.rs
+1 −3 src/cargo/core/compiler/context/compilation_files.rs
+48 −112 src/cargo/core/compiler/context/mod.rs
+10 −13 src/cargo/core/compiler/custom_build.rs
+25 −28 src/cargo/core/compiler/fingerprint.rs
+8 −17 src/cargo/core/compiler/layout.rs
+59 −0 src/cargo/core/compiler/links.rs
+26 −34 src/cargo/core/compiler/mod.rs
+165 −0 src/cargo/core/compiler/standard_lib.rs
+6 −0 src/cargo/core/compiler/unit.rs
+297 −144 src/cargo/core/compiler/unit_dependencies.rs
+14 −12 src/cargo/core/dependency.rs
+4 −0 src/cargo/core/features.rs
+44 −0 src/cargo/core/interning.rs
+12 −0 src/cargo/core/package.rs
+6 −2 src/cargo/core/package_id.rs
+1 −1 src/cargo/core/profiles.rs
+83 −36 src/cargo/core/registry.rs
+1 −1 src/cargo/core/resolver/dep_cache.rs
+7 −0 src/cargo/core/source/mod.rs
+2 −2 src/cargo/core/summary.rs
+44 −39 src/cargo/core/workspace.rs
+9 −3 src/cargo/ops/cargo_clean.rs
+57 −9 src/cargo/ops/cargo_compile.rs
+1 −1 src/cargo/ops/cargo_install.rs
+3 −3 src/cargo/ops/cargo_new.rs
+1 −1 src/cargo/ops/cargo_test.rs
+2 −2 src/cargo/ops/vendor.rs
+14 −17 src/cargo/sources/git/utils.rs
+9 −10 src/cargo/sources/registry/index.rs
+11 −10 src/cargo/sources/registry/mod.rs
+4 −3 src/cargo/sources/registry/remote.rs
+4 −2 src/cargo/util/command_prelude.rs
+88 −31 src/cargo/util/config.rs
+7 −6 src/cargo/util/flock.rs
+1 −0 src/cargo/util/network.rs
+9 −0 src/cargo/util/paths.rs
+14 −3 src/cargo/util/toml/mod.rs
+4 −6 src/cargo/util/vcs.rs
+1 −1 src/doc/man/cargo-vendor.adoc
+7 −3 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
+6 −3 src/doc/man/options-packages.adoc
+2 −2 src/doc/src/reference/manifest.md
+1 −1 src/etc/cargo.bashcomp.sh
+8 −3 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
+1 −1 tests/testsuite/bad_config.rs
+3 −3 tests/testsuite/bench.rs
+9 −9 tests/testsuite/build.rs
+59 −1 tests/testsuite/build_script.rs
+2 −2 tests/testsuite/check.rs
+134 −0 tests/testsuite/config.rs
+9 −9 tests/testsuite/doc.rs
+3 −3 tests/testsuite/features.rs
+1 −1 tests/testsuite/freshness.rs
+46 −0 tests/testsuite/login.rs
+1 −0 tests/testsuite/main.rs
+2 −2 tests/testsuite/metabuild.rs
+1 −1 tests/testsuite/out_dir.rs
+159 −0 tests/testsuite/patch.rs
+272 −0 tests/testsuite/standard_lib.rs
+9 −9 tests/testsuite/test.rs
+1 −1 tests/testsuite/workspaces.rs

0 comments on commit f257c40

Please sign in to comment.