Commit f844ea1
committed
Auto merge of rust-lang#73897 - ehuss:update-cargo, r=ehuss
Update cargo, rls
## cargo
14 commits in c26576f9adddd254b3dd63aecba176434290a9f6..fede83ccf973457de319ba6fa0e36ead454d2e20
2020-06-23 16:21:21 +0000 to 2020-07-02 21:51:34 +0000
- Fix overflow error on 32-bit. (rust-lang/cargo#8446)
- Exclude the target directory from backups using CACHEDIR.TAG (rust-lang/cargo#8378)
- CONTRIBUTING.md: Link to Zulip rather than Discord (rust-lang/cargo#8436)
- Update built-in help for features (rust-lang/cargo#8433)
- Update core-foundation requirement from 0.7.0 to 0.9.0 (rust-lang/cargo#8432)
- Parse `# env-dep` directives in dep-info files (rust-lang/cargo#8421)
- Move string interning to util (rust-lang/cargo#8419)
- Expose built cdylib artifacts in the Compilation structure (rust-lang/cargo#8418)
- Remove unused serde_derive dependency from the crates.io crate (rust-lang/cargo#8416)
- Remove unused remove_dir_all dependency (rust-lang/cargo#8412)
- Improve git error messages a bit (rust-lang/cargo#8409)
- Improve the description of Config.home_path (rust-lang/cargo#8408)
- Improve support for non-`master` main branches (rust-lang/cargo#8364)
- Document that OUT_DIR in JSON messages is an absolute path (rust-lang/cargo#8403)
## rls
2020-06-19 15:36:00 +0200 to 2020-06-30 23:34:52 +0200
- Update cargo (rust-lang/rls#1686)3 files changed
+6
-8
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
312 | 312 | | |
313 | 313 | | |
314 | 314 | | |
315 | | - | |
316 | 315 | | |
317 | 316 | | |
318 | 317 | | |
| |||
655 | 654 | | |
656 | 655 | | |
657 | 656 | | |
658 | | - | |
| 657 | + | |
659 | 658 | | |
660 | | - | |
| 659 | + | |
661 | 660 | | |
662 | 661 | | |
663 | 662 | | |
664 | 663 | | |
665 | 664 | | |
666 | 665 | | |
667 | 666 | | |
668 | | - | |
| 667 | + | |
669 | 668 | | |
670 | | - | |
| 669 | + | |
671 | 670 | | |
672 | 671 | | |
673 | 672 | | |
| |||
677 | 676 | | |
678 | 677 | | |
679 | 678 | | |
680 | | - | |
681 | 679 | | |
682 | 680 | | |
683 | 681 | | |
| |||
- CONTRIBUTING.md+4-4
- Cargo.toml+1-2
- crates/crates-io/Cargo.toml-1
- src/bin/cargo/commands/install.rs+1-1
- src/cargo/core/compiler/build_config.rs+1-1
- src/cargo/core/compiler/build_context/mod.rs+2-1
- src/cargo/core/compiler/compilation.rs+4
- src/cargo/core/compiler/compile_kind.rs+2-1
- src/cargo/core/compiler/context/compilation_files.rs+1-1
- src/cargo/core/compiler/context/mod.rs+6
- src/cargo/core/compiler/fingerprint.rs+303-87
- src/cargo/core/compiler/layout.rs+5-33
- src/cargo/core/compiler/lto.rs+1-1
- src/cargo/core/compiler/mod.rs+6-4
- src/cargo/core/compiler/output_depinfo.rs+2-2
- src/cargo/core/compiler/unit.rs+2-1
- src/cargo/core/compiler/unit_dependencies.rs+2-1
- src/cargo/core/compiler/unit_graph.rs+2-1
- src/cargo/core/dependency.rs+1-1
- src/cargo/core/manifest.rs+1-1
- src/cargo/core/mod.rs-2
- src/cargo/core/package.rs+1-1
- src/cargo/core/package_id.rs+1-1
- src/cargo/core/package_id_spec.rs+2-2
- src/cargo/core/profiles.rs+1-1
- src/cargo/core/registry.rs+2-1
- src/cargo/core/resolver/context.rs+1-1
- src/cargo/core/resolver/dep_cache.rs+1-1
- src/cargo/core/resolver/encode.rs+1-1
- src/cargo/core/resolver/errors.rs+2-2
- src/cargo/core/resolver/features.rs+2-1
- src/cargo/core/resolver/resolve.rs+1-1
- src/cargo/core/resolver/types.rs+1-1
- src/cargo/core/source/source_id.rs+10-7
- src/cargo/core/summary.rs+1-1
- src/cargo/core/workspace.rs+2-1
- src/cargo/lib.rs+7-1
- src/cargo/ops/cargo_clean.rs+2-1
- src/cargo/ops/cargo_output_metadata.rs+2-1
- src/cargo/ops/tree/graph.rs+2-3
- src/cargo/ops/vendor.rs+1
- src/cargo/sources/config.rs+1-1
- src/cargo/sources/git/source.rs+1-5
- src/cargo/sources/git/utils.rs+70-48
- src/cargo/sources/registry/index.rs+2-1
- src/cargo/sources/registry/local.rs+2-1
- src/cargo/sources/registry/mod.rs+2-1
- src/cargo/sources/registry/remote.rs+3-2
- src/cargo/util/command_prelude.rs+2-2
- src/cargo/util/config/mod.rs+1-1
- src/cargo/util/interning.rs+1-1
- src/cargo/util/mod.rs+1
- src/cargo/util/network.rs+3-3
- src/cargo/util/paths.rs+89
- src/cargo/util/rustc.rs+1-1
- src/cargo/util/toml/mod.rs+4-3
- src/doc/src/reference/external-tools.md+2-2
- src/doc/src/reference/specifying-dependencies.md+1-1
- tests/build-std/main.rs-1
- tests/internal.rs+3
- tests/testsuite/bad_config.rs+2-2
- tests/testsuite/build.rs+73-1
- tests/testsuite/cargo_features.rs+7-7
- tests/testsuite/clean.rs+3-1
- tests/testsuite/config.rs+2-1
- tests/testsuite/dep_info.rs+42-20
- tests/testsuite/directory.rs+8-9
- tests/testsuite/features.rs+6-6
- tests/testsuite/features2.rs+2-2
- tests/testsuite/freshness.rs+107
- tests/testsuite/git.rs+48
- tests/testsuite/git_auth.rs+80-8
- tests/testsuite/metabuild.rs+1-1
- tests/testsuite/offline.rs+2-2
- tests/testsuite/package.rs+9-9
- tests/testsuite/patch.rs+7-7
- tests/testsuite/profile_config.rs+3-2
- tests/testsuite/profiles.rs+1-1
- tests/testsuite/pub_priv.rs+2-2
- tests/testsuite/registry.rs+9-9
- tests/testsuite/replace.rs+5-5
- tests/testsuite/required_features.rs+2-2
- tests/testsuite/run.rs+1-1
- tests/testsuite/vendor.rs+2-2
0 commit comments