forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#77952 - ehuss:update-cargo, r=ehuss
Update cargo 11 commits in 9d1a4863abd9237dbf9d1b74c78632b6a205f6bb..12db56cdedbc2c26a9aa18f994c0188cdcc67df5 2020-10-05 18:29:52 +0000 to 2020-10-14 23:07:45 +0000 - Reinstate CARGO_PRIMARY_PACKAGE (take 2) (rust-lang/cargo#8758) - Add actionable help message for --features (rust-lang/cargo#8773) - Fix panic in `cargo doc` with -Zfeatures=itarget (rust-lang/cargo#8777) - Update git2. (rust-lang/cargo#8778) - Document RUSTFMT environment variable (rust-lang/cargo#8767) - Update crossbeam-utils requirement from 0.7 to 0.8 (rust-lang/cargo#8769) - Update toml dependency (rust-lang/cargo#8772) - Mark proc-macro crates (rust-lang/cargo#8765) - cargo-tree: mention special target `all` in CLI help text (rust-lang/cargo#8766) - Bump to 0.50.0, update changelog (rust-lang/cargo#8764) - Update deprecated GitHub add-path in workflows. (rust-lang/cargo#8760)
- Loading branch information
Showing
2 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cargo
updated
19 files
+1 −1 | .github/workflows/contrib.yml | |
+1 −1 | .github/workflows/main.yml | |
+55 −3 | CHANGELOG.md | |
+5 −5 | Cargo.toml | |
+1 −0 | crates/cargo-test-support/src/lib.rs | |
+2 −1 | src/bin/cargo/commands/tree.rs | |
+5 −0 | src/cargo/core/compiler/mod.rs | |
+59 −50 | src/cargo/core/compiler/unit_dependencies.rs | |
+12 −1 | src/cargo/ops/tree/format/mod.rs | |
+2 −1 | src/cargo/util/command_prelude.rs | |
+9 −0 | src/doc/src/reference/environment-variables.md | |
+68 −3 | tests/testsuite/build.rs | |
+1 −1 | tests/testsuite/config.rs | |
+4 −2 | tests/testsuite/features.rs | |
+49 −0 | tests/testsuite/features2.rs | |
+23 −0 | tests/testsuite/new.rs | |
+4 −0 | tests/testsuite/package_features.rs | |
+9 −9 | tests/testsuite/tree.rs | |
+77 −0 | tests/testsuite/workspaces.rs |