]> git.proxmox.com Git - cargo.git/log
cargo.git
4 years agoAuto merge of #8587 - ehuss:close_output-fix, r=alexcrichton
bors [Tue, 4 Aug 2020 23:14:37 +0000 (23:14 +0000)]
Auto merge of #8587 - ehuss:close_output-fix, r=alexcrichton

Fix close_output test.

The close_output test was randomly failing on rust-lang/rust's CI.  This should fix the error. I ran the test in a loop on the rust-lang 16-thread CPU for 10,000 times over the course of 1.5 hours without fail.  The same stress test without this patch failed relatively easily.

I'm a bit on the fence, as this means the test is no longer testing a realistic scenario (the compiler usually doesn't emit a megabyte of diagnostics). Moving this test to a single-threaded runner should also solve the problem. I can't decide if it matters enough to bother.  WDYT?

Closes #8564

4 years agoFix close_output test.
Eric Huss [Tue, 4 Aug 2020 22:50:17 +0000 (15:50 -0700)]
Fix close_output test.

4 years agoAuto merge of #8575 - matthiaskrgr:clippy_v16, r=ehuss
bors [Tue, 4 Aug 2020 03:47:51 +0000 (03:47 +0000)]
Auto merge of #8575 - matthiaskrgr:clippy_v16, r=ehuss

clippy fixes, use matches! macro in more places

4 years agoAuto merge of #8456 - ehuss:embedded-man, r=alexcrichton
bors [Mon, 3 Aug 2020 21:20:46 +0000 (21:20 +0000)]
Auto merge of #8456 - ehuss:embedded-man, r=alexcrichton

Display embedded man pages for built-in commands.

This changes `cargo help COMMAND` to display the man page for the given command.  `cargo COMMAND --help` continues to show the basic clap output.

The man pages are embedded in the executable in a compressed format. There's also a copy of the man pages in text format for platforms that do not have the `man` executable (like Windows).

It is unfortunate to check in more pre-generated files. I hope in the future that the usage of asciidoc can be replaced with something else (possibly a custom markdown-based solution).

cc #6104

4 years agouse sort_by_key() instead of comparing by keys manually
Matthias Krüger [Sat, 1 Aug 2020 11:15:35 +0000 (13:15 +0200)]
use sort_by_key() instead of comparing by keys manually
replace format!() macro by String::from()
use eprintln() instead of manually writing to std::io::stderr

4 years agoChange extract_man to not return a Result (not needed).
Eric Huss [Mon, 6 Jul 2020 16:10:08 +0000 (09:10 -0700)]
Change extract_man to not return a Result (not needed).

4 years agoDisplay embedded man pages for built-in commands.
Eric Huss [Mon, 6 Jul 2020 01:15:07 +0000 (18:15 -0700)]
Display embedded man pages for built-in commands.

4 years agoCreate a dedicated module for help tests.
Eric Huss [Mon, 6 Jul 2020 00:51:22 +0000 (17:51 -0700)]
Create a dedicated module for help tests.

4 years agoAuto merge of #8577 - ehuss:mdman, r=alexcrichton
bors [Mon, 3 Aug 2020 18:37:44 +0000 (18:37 +0000)]
Auto merge of #8577 - ehuss:mdman, r=alexcrichton

Add mdman for generating man pages.

This introduces a new utility called `mdman` that converts a markdown-formatted document to a man page. This replaces asciidoctor, with the intent to make it easier to contribute, easier to have consistent formatting across platforms, and easier to generate plain-text documents for use on Windows (for #8456). This also includes a number of formatting fixes.

There is some documentation in the `mdman/doc` directory explaining how to use it, and the docs in `src/doc/README.md` have been updated (this explains the structure of the files). The Makefile has been replaced with a simple shell script.

CI has been updated to verify the checked-in docs are up-to-date. Perhaps in the future, these can be generated automatically (perhaps by `build.rs`?), but since that requires a bit of build system work (like upstream rust), this is deferred till later.

4 years agoAuto merge of #8581 - toshokan:fix-error-typo, r=Eh2406
bors [Mon, 3 Aug 2020 16:10:33 +0000 (16:10 +0000)]
Auto merge of #8581 - toshokan:fix-error-typo, r=Eh2406

Fix typo 'more then' -> 'more than' in error and comments

There were typos in a reported resolution error and in some comments

4 years agoAuto merge of #8579 - matthiaskrgr:cargo_login_message, r=alexcrichton
bors [Mon, 3 Aug 2020 15:46:14 +0000 (15:46 +0000)]
Auto merge of #8579 - matthiaskrgr:cargo_login_message, r=alexcrichton

cargo login: make login message less ambiguous

The previous message
"please visit https://crates.io/me and paste the API Token below"
Had me waiting for a token to appear in the command line which I would then paste into the website.
Rephrase to
"please paste the api token found on https://crates.io/me below"
to clarify where to paste from and where to paste to.

4 years agoAuto merge of #8578 - ehuss:fix-build-cache-link, r=alexcrichton
bors [Mon, 3 Aug 2020 15:23:11 +0000 (15:23 +0000)]
Auto merge of #8578 - ehuss:fix-build-cache-link, r=alexcrichton

Fix broken link in Build Cache chapter.

4 years agoAuto merge of #8576 - ehuss:fix-broken_intra_doc_links, r=alexcrichton
bors [Mon, 3 Aug 2020 15:00:06 +0000 (15:00 +0000)]
Auto merge of #8576 - ehuss:fix-broken_intra_doc_links, r=alexcrichton

Fix intra-doc tests for renamed lint.

The lint was renamed in https://github.com/rust-lang/rust/pull/74926.

4 years agoFix typo 'more then' -> 'more than' in error and comments
toshokan [Mon, 3 Aug 2020 13:58:39 +0000 (09:58 -0400)]
Fix typo 'more then' -> 'more than' in error and comments

4 years agocargo login: make login message less ambiguous
Matthias Krüger [Sun, 2 Aug 2020 16:04:12 +0000 (18:04 +0200)]
cargo login: make login message less ambiguous

The previous message
"please visit https://crates.io/me and paste the API Token below"
Had me waiting for a token to appear in the command line which I would then paste into the website.
Rephrase to
"please paste the api token found on https://crates.io/me below"
to clarify where to paste from and where to paste to.

4 years agoFix broken link in Build Cache chapter.
Eric Huss [Sun, 2 Aug 2020 00:35:46 +0000 (17:35 -0700)]
Fix broken link in Build Cache chapter.

4 years agoFix some Windows newline behavior.
Eric Huss [Sat, 1 Aug 2020 19:22:14 +0000 (12:22 -0700)]
Fix some Windows newline behavior.

4 years agoDocs, CI, and tools for building man pages.
Eric Huss [Sat, 1 Aug 2020 16:38:43 +0000 (09:38 -0700)]
Docs, CI, and tools for building man pages.

4 years agoRegenerate man pages using mdman.
Eric Huss [Sat, 1 Aug 2020 16:38:02 +0000 (09:38 -0700)]
Regenerate man pages using mdman.

4 years agoRemove old HTML generated man pages.
Eric Huss [Sat, 1 Aug 2020 16:36:24 +0000 (09:36 -0700)]
Remove old HTML generated man pages.

4 years agoReformat asciidoc man pages to markdown.
Eric Huss [Sat, 1 Aug 2020 16:35:24 +0000 (09:35 -0700)]
Reformat asciidoc man pages to markdown.

4 years agoMove asciidoc man pages to markdown.
Eric Huss [Sat, 1 Aug 2020 16:33:06 +0000 (09:33 -0700)]
Move asciidoc man pages to markdown.

4 years agoAdd mdman for generating man pages.
Eric Huss [Sat, 1 Aug 2020 16:13:07 +0000 (09:13 -0700)]
Add mdman for generating man pages.

4 years agoFix intra-doc tests for renamed lint.
Eric Huss [Sat, 1 Aug 2020 16:52:11 +0000 (09:52 -0700)]
Fix intra-doc tests for renamed lint.

4 years agouse matches! macro in more places
Matthias Krüger [Sat, 1 Aug 2020 11:07:35 +0000 (13:07 +0200)]
use matches! macro in more places

4 years agoAuto merge of #8573 - alexcrichton:hash-same, r=ehuss
bors [Fri, 31 Jul 2020 21:56:08 +0000 (21:56 +0000)]
Auto merge of #8573 - alexcrichton:hash-same, r=ehuss

Use the same index location on nightly as beta

Closes #8572

4 years agoUse the same index location on nightly as beta
Alex Crichton [Fri, 31 Jul 2020 15:30:35 +0000 (08:30 -0700)]
Use the same index location on nightly as beta

Closes #8572

4 years agoAuto merge of #8566 - alexcrichton:less-output, r=ehuss
bors [Fri, 31 Jul 2020 03:03:35 +0000 (03:03 +0000)]
Auto merge of #8566 - alexcrichton:less-output, r=ehuss

Don't print to raw stderr in test

Avoids polluting the output of tests with Cargo's build output.

4 years agoAuto merge of #8569 - euclio:deprecation-message, r=ehuss
bors [Fri, 31 Jul 2020 01:43:43 +0000 (01:43 +0000)]
Auto merge of #8569 - euclio:deprecation-message, r=ehuss

relax deprecated diagnostic message check

Needed to unblock rust-lang/rust#74785.

4 years agorelax deprecated diagnostic message check
Andy Russell [Fri, 31 Jul 2020 01:04:22 +0000 (21:04 -0400)]
relax deprecated diagnostic message check

4 years agoAuto merge of #8478 - oli-obk:master, r=alexcrichton
bors [Thu, 30 Jul 2020 14:27:27 +0000 (14:27 +0000)]
Auto merge of #8478 - oli-obk:master, r=alexcrichton

Emit the `test` field in cargo metadata

This is needed so `cargo-metadata` can expose it: https://github.com/oli-obk/cargo_metadata/issues/114

4 years agoDon't print to raw stderr in test
Alex Crichton [Thu, 30 Jul 2020 14:20:43 +0000 (07:20 -0700)]
Don't print to raw stderr in test

Avoids polluting the output of tests with Cargo's build output.

4 years agoEmit the `test` field in cargo metadata
Oliver Scherer [Sun, 12 Jul 2020 14:52:31 +0000 (16:52 +0200)]
Emit the `test` field in cargo metadata

4 years agoAuto merge of #8560 - alexcrichton:o0-for-realz, r=ehuss
bors [Wed, 29 Jul 2020 16:15:05 +0000 (16:15 +0000)]
Auto merge of #8560 - alexcrichton:o0-for-realz, r=ehuss

Fix O0 build scripts by default without `[profile.release]`

This fixes an issue where #8500 didn't quite work as expected, since it
only worked if a crate had a `[profile.release]` section.

4 years agoFix O0 build scripts by default without `[profile.release]`
Alex Crichton [Wed, 29 Jul 2020 13:41:35 +0000 (06:41 -0700)]
Fix O0 build scripts by default without `[profile.release]`

This fixes an issue where #8500 didn't quite work as expected, since it
only worked if a crate had a `[profile.release]` section.

4 years agoAuto merge of #8561 - icorbrey:git-dep-lock-docs, r=ehuss
bors [Wed, 29 Jul 2020 14:58:31 +0000 (14:58 +0000)]
Auto merge of #8561 - icorbrey:git-dep-lock-docs, r=ehuss

Emphasize git dependency version locking behavior.

Added a section in `src/doc/src/reference/specifying-dependencies.md` clarifying Cargo's version locking behavior when adding `git` dependencies:

```
Once a `git` dependency has been added, Cargo will lock that dependency to the
latest commit at the time. New commits will not be pulled down automatically
once the lock is in place. However, they can be pulled down manually with
`cargo update`.
```

Resolves #8555

4 years agoAuto merge of #8554 - alexcrichton:update-lockfile-rollout, r=ehuss
bors [Wed, 29 Jul 2020 14:34:30 +0000 (14:34 +0000)]
Auto merge of #8554 - alexcrichton:update-lockfile-rollout, r=ehuss

Update lock file encodings on changes

This commit alters Cargo's lockfile encoding update strategy from its
previous incarnation. Previously Cargo had two versions, one for new
lock files and one for old lock files. Each of these versions were
different and would affect how Cargo manages lock file updates. The
intention was that we'd roll out defaults to new lock files first and
then later to preexisting lock files. This requires two separate
changes, though, and it's not necessarily clear when to start updating
old lock files. Additionally when old lock files were opted in it would
break builds using `--locked` if they simply updated Cargo because Cargo
would would want to bring the lock file versions forward.

The purpose of this change is to solve these issues. The new strategy
for updating a lock file's encoding is to simply preserve what's already
existing on the filesystem until we actually decide to write out a new
lock file. When Cargo updates a lock file on-disk then it will, at that
time, update the lock file encoding to whatever the current default is.
This means that there's only one version number to keep track of (the
default for encoding). Cargo will always preserve the preexisting
encoding unless another change is required to the lock file.

4 years agoAuto merge of #8559 - ehuss:fix-lto-tests-flaky, r=alexcrichton
bors [Wed, 29 Jul 2020 14:02:16 +0000 (14:02 +0000)]
Auto merge of #8559 - ehuss:fix-lto-tests-flaky, r=alexcrichton

Fix sporadic lto test failures.

These tests can fail because the order of the messages is not deterministic.  The two `foo` jobs start in parallel, so the order can be swapped.  Results in an error like:

```
---- lto::test_profile stdout ----
running `/home/runner/work/cargo/cargo/target/debug/cargo test -v`
thread 'lto::test_profile' panicked at '
Expected: execs
    but: differences:
  6 - |[RUNNING] `rustc --crate-name foo [..]--crate-type lib --emit=dep-info,metadata,link -Cembed-bitcode=no[..]|
    + |     Running `rustc --crate-name foo --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --emit=dep-info,link -C lto=thin -C debuginfo=2 --test -C metadata=af771ad588185fac -C extra-filename=-af771ad588185fac --out-dir /home/runner/work/cargo/cargo/target/cit/t1080/foo/target/debug/deps -L dependency=/home/runner/work/cargo/cargo/target/cit/t1080/foo/target/debug/deps --extern bar=/home/runner/work/cargo/cargo/target/cit/t1080/foo/target/debug/deps/libbar-398704963dd4e38b.rlib`|

  7 - |[RUNNING] `rustc --crate-name foo [..]--emit=dep-info,link -C lto=thin [..]--test[..]|
    + |     Running `rustc --crate-name foo --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -Cembed-bitcode=no -C debuginfo=2 -C metadata=1e8f5d385f4ffeb6 -C extra-filename=-1e8f5d385f4ffeb6 --out-dir /home/runner/work/cargo/cargo/target/cit/t1080/foo/target/debug/deps -L dependency=/home/runner/work/cargo/cargo/target/cit/t1080/foo/target/debug/deps --extern bar=/home/runner/work/cargo/cargo/target/cit/t1080/foo/target/debug/deps/libbar-398704963dd4e38b.rmeta`|
```

The failure rate is pretty small (depends heavily on the hardware).

4 years agofix: Emphasize git dependency version locking behavior.
Isaac Corbrey [Wed, 29 Jul 2020 13:49:44 +0000 (04:49 -0900)]
fix: Emphasize git dependency version locking behavior.

4 years agoAuto merge of #8558 - JohnTitor:fix-build-std, r=alexcrichton
bors [Wed, 29 Jul 2020 13:40:14 +0000 (13:40 +0000)]
Auto merge of #8558 - JohnTitor:fix-build-std, r=alexcrichton

build-std: Fix libraries paths following upstream

Fixes #8557

4 years agoFix sporadic lto test failures.
Eric Huss [Wed, 29 Jul 2020 05:25:45 +0000 (22:25 -0700)]
Fix sporadic lto test failures.

4 years agoFix mock-std as well
Yuki Okushi [Wed, 29 Jul 2020 03:41:43 +0000 (12:41 +0900)]
Fix mock-std as well

4 years agoFix libraries paths following upstream
Yuki Okushi [Wed, 29 Jul 2020 03:20:51 +0000 (12:20 +0900)]
Fix libraries paths following upstream

4 years agoAuto merge of #8553 - alexcrichton:more-maybe-spurious, r=ehuss
bors [Tue, 28 Jul 2020 19:33:38 +0000 (19:33 +0000)]
Auto merge of #8553 - alexcrichton:more-maybe-spurious, r=ehuss

Flag git http errors as maybe spurious

This showed up in #8544 with an error message of "stream ended at an
unexpected time; class=Http" which sounds like a spurious error.
Termination of a network connection can happen at any time! For now try
to assist in that error by adding another class of error to the list of
maybe spurious errors.

4 years agoUpdate lock file encodings on changes
Alex Crichton [Tue, 28 Jul 2020 19:17:55 +0000 (12:17 -0700)]
Update lock file encodings on changes

This commit alters Cargo's lockfile encoding update strategy from its
previous incarnation. Previously Cargo had two versions, one for new
lock files and one for old lock files. Each of these versions were
different and would affect how Cargo manages lock file updates. The
intention was that we'd roll out defaults to new lock files first and
then later to preexisting lock files. This requires two separate
changes, though, and it's not necessarily clear when to start updating
old lock files. Additionally when old lock files were opted in it would
break builds using `--locked` if they simply updated Cargo because Cargo
would would want to bring the lock file versions forward.

The purpose of this change is to solve these issues. The new strategy
for updating a lock file's encoding is to simply preserve what's already
existing on the filesystem until we actually decide to write out a new
lock file. When Cargo updates a lock file on-disk then it will, at that
time, update the lock file encoding to whatever the current default is.
This means that there's only one version number to keep track of (the
default for encoding). Cargo will always preserve the preexisting
encoding unless another change is required to the lock file.

4 years agoAuto merge of #8542 - CPerezz:aliases, r=ehuss
bors [Tue, 28 Jul 2020 19:09:02 +0000 (19:09 +0000)]
Auto merge of #8542 - CPerezz:aliases, r=ehuss

Display builtin aliases with `cargo --list`

As stated in #8486 it would help to the discovery of the
builtin aliases the facto of printing them with the
`cargo --list` command.

- Extracted the builtin aliases currently implemented to a
separated `const`.
- Make all of the functions that interact with these aliases
point to that function.
- Refactored the `list_commands` fn in order to include with the
builtin and external commands, the builtin aliases that come with
cargo by default.
- Added a test that checks that the aliases that currently
are builtin with cargo are indeed being printed with the rest
of the commands when `cargo --list` is called.

The output on my machine looks like this:
```
$ cargo --list
Installed Commands:
    b                    alias: build
    bench                Execute all benchmarks of a local package
    build                Compile a local package and all of its dependencies
    c                    alias: check
    check                Check a local package and all of its dependencies for errors
    clean                Remove artifacts that cargo has generated in the past
    doc                  Build a package's documentation
    fetch                Fetch dependencies of a package from the network
    fix                  Automatically fix lint warnings reported by rustc
    generate-lockfile    Generate the lockfile for a package
    git-checkout         This subcommand has been removed
    init                 Create a new cargo package in an existing directory
    install              Install a Rust binary. Default location is $HOME/.cargo/bin
    locate-project       Print a JSON representation of a Cargo.toml file's location
    login                Save an api token from the registry locally. If token is not specified, it will be read from stdin.
    metadata             Output the resolved dependencies of a package, the concrete used versions including overrides, in machine-readable format
    new                  Create a new cargo package at <path>
    owner                Manage the owners of a crate on the registry
    package              Assemble the local package into a distributable tarball
    pkgid                Print a fully qualified package specification
    publish              Upload a package to the registry
    r                    alias: run
    read-manifest        Print a JSON representation of a Cargo.toml manifest.
    run                  Run a binary or example of the local package
    rustc                Compile a package, and pass extra options to the compiler
    rustdoc              Build a package's documentation, using specified custom flags.
    search               Search packages in crates.io
    t                    alias: test
    test                 Execute all unit and integration tests and build examples of a local package
    tree                 Display a tree visualization of a dependency graph
    uninstall            Remove a Rust binary
    update               Update dependencies as recorded in the local lock file
    vendor               Vendor all dependencies for a project locally
    verify-project       Check correctness of crate manifest
    version              Show version information
    yank                 Remove a pushed crate from the index
    clippy
    clippy
    clippy
    clippy
    flamegraph
    fmt
    fmt
    fmt
    fmt
    miri
    miri
    miri
    miri
    outdated
    tree
```

As discussed with @ehuss the `BTreeSet` enforces `Ord` therefore, the aliases get mixed with the commands since they're passed through the same function.

It can be refactored to appear separately, but, the code will be more spread and now it's all in just one file (which I believe is easier to maintain and review).

Closes #8486

4 years agoRemomve builtin_aliases duplicate declaration
CPerezz [Tue, 28 Jul 2020 18:53:59 +0000 (20:53 +0200)]
Remomve builtin_aliases duplicate declaration

As @ehuss correctly suggested, we could just declare
in one `const` structure for every builtin alias the
following: `(alias, aliased_command, description)`.

Therefore, the suggestion has been applied and the
`BUILTIN_ALIASES` const has been refactored.

Also, the `builtin_aliases_execs` now parses the
`BUILTIN_ALIASES` const searching for a
"possible alias command" returning an option with the
previous info structure or `None`.

4 years agoAuto merge of #7950 - aleksator:4854_non_existent_features_error, r=ehuss
bors [Tue, 28 Jul 2020 18:44:20 +0000 (18:44 +0000)]
Auto merge of #7950 - aleksator:4854_non_existent_features_error, r=ehuss

Check manifest for requiring nonexistent features

Fixes #4854: Examples requiring a nonexistent feature should be an error

Thanks @lukaslueg with his https://github.com/rust-lang/cargo/pull/4874 for the inspiration!

4 years agoFlag git http errors as maybe spurious
Alex Crichton [Tue, 28 Jul 2020 18:33:10 +0000 (11:33 -0700)]
Flag git http errors as maybe spurious

This showed up in #8544 with an error message of "stream ended at an
unexpected time; class=Http" which sounds like a spurious error.
Termination of a network connection can happen at any time! For now try
to assist in that error by adding another class of error to the list of
maybe spurious errors.

4 years agoAuto merge of #8552 - icorbrey:test-name-filtering-docs, r=ehuss
bors [Tue, 28 Jul 2020 18:19:53 +0000 (18:19 +0000)]
Auto merge of #8552 - icorbrey:test-name-filtering-docs, r=ehuss

Clarify test name filter usage

I set aside the description of the usage example in the top description section and added a more concise example in the example section at the bottom of the man page. I also changed the wording of the usage example up top a bit to be more search-friendly since "filter" is a common keyword to search for.

Resolves #8282

4 years agoRebuild generated man pages.
Eric Huss [Tue, 28 Jul 2020 18:18:02 +0000 (11:18 -0700)]
Rebuild generated man pages.

4 years agofix: Clarify test name filter usage
Isaac Corbrey [Tue, 28 Jul 2020 14:19:58 +0000 (05:19 -0900)]
fix: Clarify test name filter usage

Set aside description of the usage example in the top description section and added a more consise example in the example section at the bottom of the man page.

4 years agoAuto merge of #8551 - CPerezz:manifest_edition_nit, r=Eh2406
bors [Tue, 28 Jul 2020 13:19:16 +0000 (13:19 +0000)]
Auto merge of #8551 - CPerezz:manifest_edition_nit, r=Eh2406

Revert Cargo Book changes for default edition

On #8543 it was introduced a change on the Cargo Book docs
where it was incorrectly stated that the default edition for
the Cargo Manifest was `2018` when indeed, as @ehuss correctly stated
in https://github.com/rust-lang/cargo/pull/8543#issuecomment-663769077
it is not.

Therefore, as @Eh2406 asked for, I made the PR reverting this changes
and leaving the Cargo Book docs as they were before.

4 years agoRevert Cargo Book changes for default edition
CPerezz [Tue, 28 Jul 2020 10:39:22 +0000 (12:39 +0200)]
Revert Cargo Book changes for default edition

On #8543 it was introduced a change on the Cargo Book docs
where it was incorrectly stated that the default edition for
the Cargo Manifest was `2018` when indeed, as @ehuss correctly stated
in https://github.com/rust-lang/cargo/pull/8543#issuecomment-663769077
it is not.

Therefore, as @Eh2406 asked for, I made the PR reverting this changes
and leaving the Cargo Book docs as they were before.

4 years agoAuto merge of #8522 - alexcrichton:revert-master, r=ehuss
bors [Mon, 27 Jul 2020 18:20:05 +0000 (18:20 +0000)]
Auto merge of #8522 - alexcrichton:revert-master, r=ehuss

Prepare for not defaulting to master branch for git deps

This PR is the "equivalent" of https://github.com/rust-lang/cargo/pull/8503 for the nightly channel of Rust (the master branch of Cargo). The purpose of this change is to fix the breakage from https://github.com/rust-lang/cargo/pull/8364 but to still pave a path forward to enabling the feature added in https://github.com/rust-lang/cargo/pull/8364, namely reinterpreting dependency directives without a `branch` directive as depending on `HEAD` insead of depending on `master`.

This is a series of commits which implements a few mitigation strategies, but they're all adding up into a larger plan to roll out this change with, ideally, no breaking changes for those "reasonably" keeping up with Rust. The changes here are:

* Cargo still internally differentiates between `DefaultBranch` and `Branch("master")`, so it knows what you wrote in the manifest. These two, however, hash and equate together so everything in Cargo considers them equivalent.
* Cargo will now issue a warning whenever it fetches a repository pinned to `DefaultBranch` and the branch's `master` branch doesn't actually match `HEAD`. This avenue of breakage didn't arise but I added it here for completionism about not having to deal with breakage from this change again.
* Cargo has now implemented a new future lockfile format. Internally this is dubbed "v3". The changes in this format is that it will have a `version` marker at the top of the file as well as encoding git dependencies different. Today `DefaultBranch` and `Branch("master")` encode the same way, but in the future they will encode differently.
* Cargo now has a warning where if you have a mixture of `DefaultBranch` and `Branch("master")` in your build. The intention here is to get everyone on one or the other so the transition to the new lock file format can go smoothly.

With all of these pieces in place the intention is that there is no breakage from #8364 as well. Additionally projects that *would* break will receive warnings. (note that projects "broken" today, those we've got issues for, will likely not get warnings, but that's because it was accidental we broke them). The long-term plan is to let this bake for quite some time, and then as part of the same change land an update to the new lock file format as well as "fixing" `SourceId` to consider these two directives different. When this change happens we should have guaranteed, for all currently active projects, they're either only using `branch = "master"` or no directive at all. We can therefore unambiguosly read the previous `Cargo.lock` to transition it into a new `Cargo.lock` which will either have `?branch=master` or nothing.

I'm not sure how long this will need to bake for because unfortunately version changes to `Cargo.lock` cannot be taken lightly. We haven't even bumped the default format for old lock files to `V2` yet, they're still on `V1`. Hopefully in getting this in early-ish, though, we can at least get the ball rolling.

Closes #8468

4 years agoAuto merge of #8547 - ThePuzzlemaker:patch-1, r=ehuss
bors [Mon, 27 Jul 2020 14:32:42 +0000 (14:32 +0000)]
Auto merge of #8547 - ThePuzzlemaker:patch-1, r=ehuss

Include `+` for crates.io feature requirements in the Cargo Book section on features

This change was introduced in commit 5f842f7 of rust-lang/crates.io but was not subsequently added to the Cargo Book.

4 years agoInclude `+` for crates.io feature requirements
James [Mon, 27 Jul 2020 06:58:55 +0000 (01:58 -0500)]
Include `+` for crates.io feature requirements

This change was introduced in commit 5f842f7 of rust-lang/crates.io.

4 years agoWarn on missing required-features
Alex Tokarev [Fri, 28 Feb 2020 18:55:18 +0000 (21:55 +0300)]
Warn on missing required-features

Co-authored-by: Eric Huss <eric@huss.org>
4 years agoAuto merge of #8540 - vandenheuvel:update_termcolor_version, r=ehuss
bors [Sat, 25 Jul 2020 17:00:56 +0000 (17:00 +0000)]
Auto merge of #8540 - vandenheuvel:update_termcolor_version, r=ehuss

Update termcolor and fwdansi versions

A summary of the changes since 1.0.5:

- **wincolor-1.0.3**
- readme: update readme with various things
- ci: switch to GitHub Actions and bump MSRV to 1.34.0
- doc: add notes about tty detection
- doc: clarify how ANSI colors work
- **env: respect NO_COLOR environment variable**
- edition: switch to Rust 2018
- deps: drop wincolor dependency
- msrv: document minimum supported Rust version policy
- style: use rustfmt
- **api: add option to toggle terminal resetting**
- readme: test examples in README
- **bug: fix clear() and is_none()**
- **output: italicized support**
- **wincolor-1.0.2**
- wincolor: specify dual-license

4 years agoChange fwdansi version from ~ to
Bram van den Heuvel [Sat, 25 Jul 2020 11:43:19 +0000 (13:43 +0200)]
Change fwdansi version from ~ to

4 years agoAuto merge of #8543 - CPerezz:manifest_edition_nit, r=Eh2406
bors [Fri, 24 Jul 2020 22:15:03 +0000 (22:15 +0000)]
Auto merge of #8543 - CPerezz:manifest_edition_nit, r=Eh2406

Cargo book nitpick in Manifest section

The Manifest section states on the example that the
default edition is 2018, but the lines of text above
state that the default is `2015` which is not correct.

Closes #8541

4 years agoFix default edition spec in Cargo Book
CPerezz [Fri, 24 Jul 2020 21:51:37 +0000 (23:51 +0200)]
Fix default edition spec in Cargo Book

The Manifest section states on the example that the
default edition is 2018, but the lines of text avobe
state that the default is `2015` which is not correct.

Closes #8541

4 years agoAdd test for listing builtin aliases
CPerezz [Fri, 24 Jul 2020 21:40:49 +0000 (23:40 +0200)]
Add test for listing builtin aliases

Added a test that checks that the aliases that currently
are builtin with cargo are indeed being printed with the rest
of the commands when `cargo --list` is called.

Closes #8486

4 years agoPrint builtin aliases with cargo --list command
CPerezz [Fri, 24 Jul 2020 21:26:25 +0000 (23:26 +0200)]
Print builtin aliases with cargo --list command

As stated in #8486 it would help to the discovery of the
builtin aliases the facto of printing them with the
`cargo --list` command.

- Extracted the builtin aliases currently implemented to a
sepparated `const`.
- Make all of the functions that interact with these aliases
point to that function.
- Refactored the `list_commands` fn in order to include with the
builtin and external commands, the builtin aliases that come with
cargo by defaut.

4 years agoIncreace termcolor version from 1.0 to 1.1
Bram van den Heuvel [Fri, 24 Jul 2020 15:43:46 +0000 (17:43 +0200)]
Increace termcolor version from 1.0 to 1.1

4 years agoTweak wording of comment
Alex Crichton [Thu, 23 Jul 2020 15:16:02 +0000 (08:16 -0700)]
Tweak wording of comment

4 years agoUse `version = 3`, not `version = 1`
Alex Crichton [Thu, 23 Jul 2020 15:14:10 +0000 (08:14 -0700)]
Use `version = 3`, not `version = 1`

4 years agoWarn if `master` unifies with `DefaultBranch`
Alex Crichton [Mon, 20 Jul 2020 21:50:49 +0000 (14:50 -0700)]
Warn if `master` unifies with `DefaultBranch`

This commit implements a simple warning to indicate when `DefaultBranch`
is unified with `Branch("master")`, meaning `Cargo.toml` inconsistently
lists `branch = "master"` and not. The intention here is to ensure that
all projects uniformly use one or the other to ensure we can smoothly
transition to the new lock file format.

4 years agoPlan for a V3 lockfile format
Alex Crichton [Mon, 20 Jul 2020 17:11:25 +0000 (10:11 -0700)]
Plan for a V3 lockfile format

This commit lays the groundwork for an eventual V3 of the lock file
format. The changes in this format are:

* A `version` indicator will be at the top of the file so we don't have
  to guess what format the lock is in, we know for sure. Additionally
  Cargo now reading a super-from-the-future lock file format will give a
  better error.

* Git dependencies with `Branch("master")` will be encoded with
  `?branch=master` instead of with nothing.

The motivation for this change is to eventually switch Cargo's
interpretation of default git branches.

4 years agoWarn when default branch is not `master`
Alex Crichton [Mon, 20 Jul 2020 16:28:35 +0000 (09:28 -0700)]
Warn when default branch is not `master`

This commit implements a warning in Cargo for when a dependency
directive is using `DefaultBranch` but the default branch of the remote
repository is not actually `master`. We will eventually break this
dependency directive and the warning indicates the fix, which is to
write down `branch = "master"`.

4 years agoEffectively revert #8364
Alex Crichton [Mon, 20 Jul 2020 15:47:57 +0000 (08:47 -0700)]
Effectively revert #8364

This commit is intended to be an effective but not literal revert
of #8364. Internally Cargo will still distinguish between
`DefaultBranch` and `Branch("master")` when reading `Cargo.toml` files,
but for almost all purposes the two are equivalent. This will namely fix
the issue we have with lock file encodings where both are encoded with
no `branch` (and without a branch it's parsed from a lock file as
`DefaultBranch`).

This will preserve the change that `cargo vendor` will not print out
`branch = "master"` annotations but that desugars to match the lock file
on the other end, so it should continue to work.

Tests have been added in this commit for the regressions found on #8468.

4 years agoAuto merge of #8530 - ehuss:ci-force-curl, r=alexcrichton
bors [Thu, 23 Jul 2020 13:46:27 +0000 (13:46 +0000)]
Auto merge of #8530 - ehuss:ci-force-curl, r=alexcrichton

Update features set in CI.

This removes the `curl/force-system-lib-on-osx` feature, which I don't think has been needed for a while (I believe it was fixed with https://github.com/alexcrichton/curl-rust/pull/283).

This also uses the same features for `test -p cargo-test-support` so that cargo doesn't get recompiled (saving about a minute).

4 years agoAuto merge of #8509 - ehuss:stabilize-crate-version, r=Eh2406
bors [Thu, 23 Jul 2020 13:15:05 +0000 (13:15 +0000)]
Auto merge of #8509 - ehuss:stabilize-crate-version, r=Eh2406

Stabilize -Z crate-versions

This stabilizes the `-Z crate-versions` flag which forwards the crate version to rustdoc so it can display the version in the sidebar.

The flag in rustdoc was stabilized in 1.44.

Closes #7907

4 years agoAuto merge of #8529 - AndrewKvalheim:patch-1, r=ehuss
bors [Thu, 23 Jul 2020 07:05:22 +0000 (07:05 +0000)]
Auto merge of #8529 - AndrewKvalheim:patch-1, r=ehuss

Fix typo in docs

4 years agoAuto merge of #8526 - tmiasko:remove-all-modes, r=ehuss
bors [Thu, 23 Jul 2020 06:39:00 +0000 (06:39 +0000)]
Auto merge of #8526 - tmiasko:remove-all-modes, r=ehuss

Remove unused CompileMode::all_modes

4 years agoAuto merge of #8523 - Gankra:crlf, r=alexcrichton
bors [Thu, 23 Jul 2020 06:11:01 +0000 (06:11 +0000)]
Auto merge of #8523 - Gankra:crlf, r=alexcrichton

Mask out system core.autocrlf settings before resetting git repos

This fixes an issue the gecko developers noticed when vendoring
on windows. \[0\] If a user has `core.autocrlf=true` set
(a reasonable default on windows), vendoring from a git source
would cause all the newlines to be rewritten to include carriage
returns, creating churn and platform-specific results.

To fix this, we simply set the global cargo checkout's "local"
core.autocrlf value before performing a `reset`. This masks out
the system configuration without interfering with the user's
own system/project settings.

\[0\]:  https://bugzilla.mozilla.org/show_bug.cgi?id=1647582

4 years agoAuto merge of #8520 - alexcrichton:zlib-spurious, r=ehuss
bors [Thu, 23 Jul 2020 05:44:45 +0000 (05:44 +0000)]
Auto merge of #8520 - alexcrichton:zlib-spurious, r=ehuss

Flag git zlib errors as spurious errors

This may be a bad band-aid for now, but the goal is to help
address #8517 where this has been showing up in the wild quite a lot.

4 years agoAuto merge of #8515 - Spanfile:target-triple-opt-help-fix, r=ehuss
bors [Thu, 23 Jul 2020 05:17:25 +0000 (05:17 +0000)]
Auto merge of #8515 - Spanfile:target-triple-opt-help-fix, r=ehuss

Fix the help display for the target-triple option

The `--target` option (in `cargo build` for example) had its value name and help text flipped, so it looked like;
```
--target <Build for the target triple>...    TRIPLE
```
This PR swaps the `value_name` and `help` arguments for the `multi_opt` call in `command_prelude.rs`/`fn arg_target_triple()` so the value name and help text are displayed correctly.

4 years agoAuto merge of #8511 - eonil:check-member-path-existence, r=ehuss
bors [Thu, 23 Jul 2020 04:51:07 +0000 (04:51 +0000)]
Auto merge of #8511 - eonil:check-member-path-existence, r=ehuss

Check workspace member existence as dir.

Cargo command fails if workspace members are set to something like `crates/*` and if there's any non project file in `crates` directory. This PR makes member discovery logic to exclude non-directory paths.

In my case, `.DS_Store` (which is made automatically by Finder on macOS) file triggered this issue.

4 years agoAuto merge of #8508 - ehuss:version-bump, r=alexcrichton
bors [Thu, 23 Jul 2020 03:58:08 +0000 (03:58 +0000)]
Auto merge of #8508 - ehuss:version-bump, r=alexcrichton

Bump to 0.48.0, update changelog

4 years agoUpdate features set in CI.
Eric Huss [Thu, 23 Jul 2020 03:37:50 +0000 (20:37 -0700)]
Update features set in CI.

4 years agoAuto merge of #8485 - thomcc:exclude-default-members, r=ehuss
bors [Thu, 23 Jul 2020 03:27:25 +0000 (03:27 +0000)]
Auto merge of #8485 - thomcc:exclude-default-members, r=ehuss

Apply workspace.exclude to workspace.default-members.

Not sure how controversial the feature request was, it seemed easy to do, so I did it (I'm aware it's possible this won't be accepted).

Fixes #8460

4 years agoAuto merge of #8528 - ehuss:fix-intra-doc-tests, r=alexcrichton
bors [Thu, 23 Jul 2020 02:58:17 +0000 (02:58 +0000)]
Auto merge of #8528 - ehuss:fix-intra-doc-tests, r=alexcrichton

Fix nightly tests for intra-doc links.

Some of the error messages have changed slightly.

4 years agoFix typo in docs
Andrew [Thu, 23 Jul 2020 02:40:48 +0000 (19:40 -0700)]
Fix typo in docs

4 years agoFix nightly tests for intra-doc links.
Eric Huss [Thu, 23 Jul 2020 02:08:07 +0000 (19:08 -0700)]
Fix nightly tests for intra-doc links.

4 years agoMerge remote-tracking branch 'upstream/master'
CPerezz [Wed, 22 Jul 2020 18:19:28 +0000 (20:19 +0200)]
Merge remote-tracking branch 'upstream/master'

4 years agoCheck workspace member existence as dir.
eonil [Sun, 19 Jul 2020 11:34:19 +0000 (20:34 +0900)]
Check workspace member existence as dir.

4 years agoRemove unused CompileMode::all_modes
Tomasz Miąsko [Wed, 22 Jul 2020 00:00:00 +0000 (00:00 +0000)]
Remove unused CompileMode::all_modes

4 years agoMask out system core.autocrlf settings before resetting git repos
Alexis Beingessner [Mon, 20 Jul 2020 22:54:35 +0000 (18:54 -0400)]
Mask out system core.autocrlf settings before resetting git repos

This fixes an issue the gecko developers noticed when vendoring
on windows. [0] If a user has `core.autocrlf=true` set
(a reasonable default on windows), vendoring from a git source
would cause all the newlines to be rewritten to include carriage
returns, creating churn and platform-specific results.

To fix this, we simply set the global cargo checkout's "local"
core.autocrlf value before performing a `reset`. This masks out
the system configuration without interfering with the user's
own system/project settings.

[0]:  https://bugzilla.mozilla.org/show_bug.cgi?id=1647582

4 years agoUpdate changelog for 1.46.
Eric Huss [Sat, 18 Jul 2020 17:50:58 +0000 (10:50 -0700)]
Update changelog for 1.46.

4 years agoCheck for `quux` binary in `excluded_default_members_crate_glob` test (review feedback)
Thom Chiovoloni [Mon, 20 Jul 2020 16:38:20 +0000 (09:38 -0700)]
Check for `quux` binary in `excluded_default_members_crate_glob` test (review feedback)

4 years agoFlag git zlib errors as spurious errors
Alex Crichton [Mon, 20 Jul 2020 15:21:16 +0000 (08:21 -0700)]
Flag git zlib errors as spurious errors

This may be a bad band-aid for now, but the goal is to help
address #8517 where this has been showing up in the wild quite a lot.

4 years agoSwap the value_name and help arguments for the multi_opt call in command_prelude...
Spanfile [Sun, 19 Jul 2020 19:19:12 +0000 (22:19 +0300)]
Swap the value_name and help arguments for the multi_opt call in command_prelude/arg_target_triple

4 years agoAuto merge of #8510 - jsha:patch-1, r=ehuss
bors [Sat, 18 Jul 2020 23:47:01 +0000 (23:47 +0000)]
Auto merge of #8510 - jsha:patch-1, r=ehuss

doc: Replace "regenerate" with "revoke" for API tokens

The current UI supports revoking tokens and creating new ones, not regenerating them.

4 years agoReplace "regenerate" with "revoke" for API tokens
Jacob Hoffman-Andrews [Sat, 18 Jul 2020 23:39:23 +0000 (16:39 -0700)]
Replace "regenerate" with "revoke" for API tokens

The current UI supports revoking tokens and creating new ones, not regenerating them.

4 years agoStabilize -Z crate-versions
Eric Huss [Sat, 18 Jul 2020 15:37:04 +0000 (08:37 -0700)]
Stabilize -Z crate-versions

4 years agoBump to 0.48.0
Eric Huss [Sat, 18 Jul 2020 16:33:35 +0000 (09:33 -0700)]
Bump to 0.48.0

4 years agoRemove embed-bitcode check now that it is on stable.
Eric Huss [Sat, 18 Jul 2020 15:56:48 +0000 (08:56 -0700)]
Remove embed-bitcode check now that it is on stable.

4 years agoAuto merge of #8494 - lu-zero:unbreak-cargo-c, r=ehuss
bors [Sat, 18 Jul 2020 03:14:53 +0000 (03:14 +0000)]
Auto merge of #8494 - lu-zero:unbreak-cargo-c, r=ehuss

Add back Manifest::targets_mut

It is needed by cargo-c, it was removed in df5cb70e7bc8872216af736f108f5a959a6d2302

4 years agoAuto merge of #8500 - alexcrichton:build-override-opt-level-0, r=Eh2406
bors [Fri, 17 Jul 2020 20:21:25 +0000 (20:21 +0000)]
Auto merge of #8500 - alexcrichton:build-override-opt-level-0, r=Eh2406

Build host dependencies with opt-level 0 by default

This commit updates Cargo's build of host dependencies to build them
with optimization level 0 by default instead of matching the profile of
the final binary.

Since Cargo's inception build dependencies have, by default, been built
in a profile that largely matches the profile of the final target
artifact. Build dependencies, however, rarely actually need to be
optimized and are often executing very small tasks, which means that
optimizing them often wastes a lot of build time. A great example of
this is procedural macros where `syn` and friends are pretty heavyweight
to optimize, and the amount of Rust code they're parsing is typically
quite small, so the time spent optimizing rarely comes as a benefit.

The goal of this PR is to improve build times on average in the
community by not spending time optimizing build dependencies (build
scripts, procedural macros, and their transitive dependencies). The PR
will not be a universal win for everyone, however. There's some
situations where your build time may actually increase:

* In some cases build scripts and procedural macros can take quite a
  long time to run!
* Cargo may not build dependencies more than once if they're shared with
  the main build. This only applies to builds without `--target` where
  the same crate is used in the final binary as in a build script.

In these cases, however, the `build-override` profile has existed for
some time know and allows giving a knob to tweak this behavior. For
example to get back the previous build behavior of Cargo you would
specify, in `Cargo.toml`:

    [profile.release.build-override]
    opt-level = 3

or you can configure this via the environment:

    export CARGO_PROFILE_RELEASE_BUILD_OVERRIDE_OPT_LEVEL=3

There are two notable features we would like to add in the future which
would make the impact of a change like this smaller, but they're not
implemented at this time (nor do we have concrete plans to implement
them). First we would like crates to have a way of specifying they
should be optimized by default, despite default profile options. Often
crates, like lalrpop historically, have abysmal performance in debug
mode and almost always (even in debug builds) want to be built in
release mode. The second feature is that ideally crate authors would be
able to tell Cargo to minimize the number of crates built, unifying
profiles where possible to avoid double-compiling crates.

At this time though the Cargo team feels that the benefit of changing
the defaults is well worth this change. Neither today nor directly after
this change will be a perfect world, but it's hoped that this change
makes things less bad!