]> git.proxmox.com Git - cargo.git/log
cargo.git
5 years agoAuto merge of #6841 - ehuss:err-walk-access, r=dwijnand
bors [Fri, 12 Apr 2019 05:44:48 +0000 (05:44 +0000)]
Auto merge of #6841 - ehuss:err-walk-access, r=dwijnand

Better error if PathSource::walk can't access something.

Reported at https://github.com/rust-lang/cargo/issues/6757#issuecomment-481847354.

5 years agoBetter error if PathSource::walk can't access something.
Eric Huss [Fri, 12 Apr 2019 01:28:45 +0000 (18:28 -0700)]
Better error if PathSource::walk can't access something.

5 years agoAuto merge of #6839 - ehuss:new-error-causes, r=alexcrichton
bors [Thu, 11 Apr 2019 21:26:59 +0000 (21:26 +0000)]
Auto merge of #6839 - ehuss:new-error-causes, r=alexcrichton

Improve warning in `cargo new` with parse error.

If `cargo new` fails to load a parent manifest (for whatever reason), it as not
displaying the reason why. Add the causes to provide more context.

5 years agoImprove warning in `cargo new` with parse error.
Eric Huss [Thu, 11 Apr 2019 19:29:21 +0000 (12:29 -0700)]
Improve warning in `cargo new` with parse error.

If `cargo new` fails to load a parent manifest (for whatever reason), it as not
displaying the reason why. Add the causes to provide more context.

5 years agoAuto merge of #6838 - ehuss:publish-error-msg, r=alexcrichton
bors [Thu, 11 Apr 2019 19:11:07 +0000 (19:11 +0000)]
Auto merge of #6838 - ehuss:publish-error-msg, r=alexcrichton

Improve error message for `publish` key restriction.

The existing error message didn't really recognize that `publish` can be a
list.

This also adds support for `publish = ["crates-io"]` to restrict publishing
to crates.io only.

5 years agoImprove error message for `publish` key restriction.
Eric Huss [Thu, 11 Apr 2019 18:34:00 +0000 (11:34 -0700)]
Improve error message for `publish` key restriction.

The existing error message didn't really recognize that `publish` can be a
list.

This also adds support for `publish = ["crates-io"]` to restrict publishing
to crates.io only.

5 years agoAuto merge of #6832 - alexcrichton:freshness, r=ehuss
bors [Thu, 11 Apr 2019 17:52:18 +0000 (17:52 +0000)]
Auto merge of #6832 - alexcrichton:freshness, r=ehuss

Remove `Freshness` from `DependencyQueue`

Ever since the inception of Cargo and the advent of incremental
compilation at the crate level via Cargo, Cargo has tracked whether it
needs to recompile something at a unit level in its "dependency queue"
which manages when items are ready for execution. Over time we've fixed
lots and lots of bugs related to incremental compilation, and perhaps
one of the most impactful realizations was that the model Cargo started
with fundamentally doesn't handle interrupting Cargo halfway through and
resuming the build later.

The previous model relied upon implicitly propagating "dirtiness" based
on whether the one of the dependencies of a build was rebuilt or not.
This information is not available, however, if Cargo is interrupted and
resumed (or performs a subset of steps and then later performs more).
We've fixed this in a number of places historically but the purpose of
this commit is to put a nail in this coffin once and for all.

Implicit propagation of whether a unit is fresh or dirty is no longer
present at all. Instead Cargo should always know, irrespective of it's
in-memory state, whether a unit needs to be recompiled or not. This
commit actually turns up a few bugs in the test suite, so later commits
will be targeted at fixing this.

Note that this required a good deal of work on the `fingerprint` module
to fix some longstanding bugs (like #6780) and some serious hoops had to
be jumped through for others (like #6779). While these were fallout from
this change they weren't necessarily the primary motivation, but rather
to help make `fingerprints` a bit more straightforward in what's an
already confusing system!

Closes #6780

5 years agoMove `Fingerprint::local` into a `Mutex`
Alex Crichton [Thu, 11 Apr 2019 16:27:13 +0000 (09:27 -0700)]
Move `Fingerprint::local` into a `Mutex`

Removes the need for a wonky `with_local` method!

5 years agoHandle some review comments
Alex Crichton [Thu, 11 Apr 2019 16:18:15 +0000 (09:18 -0700)]
Handle some review comments

5 years agoRemove a debugging call to `stream()`
Alex Crichton [Wed, 10 Apr 2019 17:42:30 +0000 (10:42 -0700)]
Remove a debugging call to `stream()`

5 years agoTouch up comments in fingerprint file
Alex Crichton [Tue, 9 Apr 2019 19:10:38 +0000 (12:10 -0700)]
Touch up comments in fingerprint file

5 years agoFix a TODO by deduplicating with a common function
Alex Crichton [Tue, 9 Apr 2019 18:43:11 +0000 (11:43 -0700)]
Fix a TODO by deduplicating with a common function

5 years agoPurge mtime information from `Fingerprint`
Alex Crichton [Tue, 9 Apr 2019 18:37:31 +0000 (11:37 -0700)]
Purge mtime information from `Fingerprint`

This has proven to be a very unreliable piece of information to hash, so
let's not! Instead we track what files are supposed to be relative to,
and we check both mtimes when necessary.

5 years agoRemove `Freshness` from `DependencyQueue`
Alex Crichton [Fri, 5 Apr 2019 19:54:50 +0000 (12:54 -0700)]
Remove `Freshness` from `DependencyQueue`

Ever since the inception of Cargo and the advent of incremental
compilation at the crate level via Cargo, Cargo has tracked whether it
needs to recompile something at a unit level in its "dependency queue"
which manages when items are ready for execution. Over time we've fixed
lots and lots of bugs related to incremental compilation, and perhaps
one of the most impactful realizations was that the model Cargo started
with fundamentally doesn't handle interrupting Cargo halfway through and
resuming the build later.

The previous model relied upon implicitly propagating "dirtiness" based
on whether the one of the dependencies of a build was rebuilt or not.
This information is not available, however, if Cargo is interrupted and
resumed (or performs a subset of steps and then later performs more).
We've fixed this in a number of places historically but the purpose of
this commit is to put a nail in this coffin once and for all.

Implicit propagation of whether a unit is fresh or dirty is no longer
present at all. Instead Cargo should always know, irrespective of it's
in-memory state, whether a unit needs to be recompiled or not. This
commit actually turns up a few bugs in the test suite, so later commits
will be targeted at fixing this.

Note that this required a good deal of work on the `fingerprint` module
to fix some longstanding bugs (like #6780) and some serious hoops had to
be jumped through for others (like #6779). While these were fallout from
this change they weren't necessarily the primary motivation, but rather
to help make `fingerprints` a bit more straightforward in what's an
already confusing system!

Closes #6780

5 years agoRun `cargo fmt`
Alex Crichton [Fri, 5 Apr 2019 19:55:01 +0000 (12:55 -0700)]
Run `cargo fmt`

5 years agoAuto merge of #6837 - ehuss:remove-alt-reg-test, r=Eh2406
bors [Wed, 10 Apr 2019 02:14:35 +0000 (02:14 +0000)]
Auto merge of #6837 - ehuss:remove-alt-reg-test, r=Eh2406

testsuite: cleanup for `alternative-registries`

Remove some `alternative-registries` features that were accidentally left
behind.

5 years agotestsuite: cleanup for `alternative-registries`
Eric Huss [Wed, 10 Apr 2019 02:08:43 +0000 (19:08 -0700)]
testsuite: cleanup for `alternative-registries`

Remove some `alternative-registries` features that were accidentally left
behind.

5 years agoAuto merge of #6824 - ehuss:improve-test-rerun-hint, r=alexcrichton
bors [Mon, 8 Apr 2019 17:58:06 +0000 (17:58 +0000)]
Auto merge of #6824 - ehuss:improve-test-rerun-hint, r=alexcrichton

Improve error message to rerun a test in a workspace.

In a non-virtual workspace, if you run `cargo test --all` and something fails, it tells you to rerun `--test foo`, but if `foo` is not the default, then it won't work without a `-p` flag.  This tries to be a little more careful about when `-p` is needed in the hint.

5 years agoAuto merge of #6829 - ehuss:fix-mutable-borrow, r=alexcrichton
bors [Mon, 8 Apr 2019 17:32:47 +0000 (17:32 +0000)]
Auto merge of #6829 - ehuss:fix-mutable-borrow, r=alexcrichton

Fix mutable_borrow_reservation_conflict warning.

nightly-2019-04-08 added a more restrictive borrowing rule (rust-lang/rust#58739).

5 years agoFix mutable_borrow_reservation_conflict warning.
Eric Huss [Mon, 8 Apr 2019 17:05:45 +0000 (10:05 -0700)]
Fix mutable_borrow_reservation_conflict warning.

5 years agoImprove error message to rerun a test in a workspace.
Eric Huss [Sat, 6 Apr 2019 01:52:22 +0000 (18:52 -0700)]
Improve error message to rerun a test in a workspace.

5 years agoAuto merge of #6798 - ehuss:install-upgrade, r=alexcrichton
bors [Fri, 5 Apr 2019 18:29:47 +0000 (18:29 +0000)]
Auto merge of #6798 - ehuss:install-upgrade, r=alexcrichton

Add install-upgrade.

This implements the feature described in #6667. Instead of failing when `cargo install` detects a package is already installed, it will upgrade if the versions don't match, or do nothing (exit 0) if it is considered "up-to-date".

Closes #6667.

Notes:
- This feature rejects ambiguous `--version` input (such as `1.0`). This is not required, but seemed like a reasonable time to make the change.
- There is a slight change to the output on stable which reports what was installed/replaced.
- Added better support for `*` in `--version` (don't show warning).

5 years agoinstall-upgrade: Add some more comments.
Eric Huss [Fri, 5 Apr 2019 17:48:23 +0000 (10:48 -0700)]
install-upgrade: Add some more comments.

5 years agoAuto merge of #6823 - spl:clarify-install-path, r=alexcrichton
bors [Fri, 5 Apr 2019 13:26:24 +0000 (13:26 +0000)]
Auto merge of #6823 - spl:clarify-install-path, r=alexcrichton

Clarify docs of install without <crate>

This is an attempt to clarify the documentation of `install` without `<crate>`. I found it confusing trying to determine to which behavior “this” referred as well as whether “supported” meant “maintained” or “worked.”

5 years agoClarify docs of install without <crate>
Sean Leather [Fri, 5 Apr 2019 10:57:55 +0000 (12:57 +0200)]
Clarify docs of install without <crate>

5 years agoAuto merge of #6820 - ehuss:fix-edition-link, r=alexcrichton
bors [Thu, 4 Apr 2019 14:11:33 +0000 (14:11 +0000)]
Auto merge of #6820 - ehuss:fix-edition-link, r=alexcrichton

Fix doc link.

The rust linkchecker does not like directory-style links.

5 years agoinstall-upgrade: Fix bugs, more comments, review updates.
Eric Huss [Thu, 4 Apr 2019 01:05:55 +0000 (18:05 -0700)]
install-upgrade: Fix bugs, more comments, review updates.

5 years agoFix doc link.
Eric Huss [Wed, 3 Apr 2019 23:45:24 +0000 (16:45 -0700)]
Fix doc link.

The rust linkchecker does not like directory-style links.

5 years agoAuto merge of #6818 - dtolnay:comma, r=alexcrichton
bors [Wed, 3 Apr 2019 20:25:19 +0000 (20:25 +0000)]
Auto merge of #6818 - dtolnay:comma, r=alexcrichton

Accept trailing comma in test of impl Debug for PackageId

The standard library is planning to begin emitting trailing commas in multiline Debug representations to align with the dominant style in modern Rust code -- https://github.com/rust-lang/rust/pull/59076.

```diff
  PackageId {
      name: "foo",
      version: "1.0.0",
-     source: "registry `https://github.com/rust-lang/crates.io-index`"
+     source: "registry `https://github.com/rust-lang/crates.io-index`",
  }
```

For now, change this tests to accept both with and without trailing comma. Once the trailing comma change reaches the stable channel we will be able to remove one of the cases.

5 years agoAccept trailing comma in test of impl Debug for PackageId
David Tolnay [Wed, 3 Apr 2019 20:17:16 +0000 (13:17 -0700)]
Accept trailing comma in test of impl Debug for PackageId

The standard library is planning to begin emitting trailing commas in
multiline Debug representations to align with the dominant style in
modern Rust code.

      PackageId {
          name: "foo",
          version: "1.0.0",
    -     source: "registry `https://github.com/rust-lang/crates.io-index`"
    +     source: "registry `https://github.com/rust-lang/crates.io-index`",
      }

For now, change this tests to accept both with and without trailing
comma. Once the trailing comma change reaches the stable channel we will
be able to remove one of the cases.

5 years agoAuto merge of #6814 - ehuss:offline-optional-dep, r=alexcrichton
bors [Tue, 2 Apr 2019 22:03:55 +0000 (22:03 +0000)]
Auto merge of #6814 - ehuss:offline-optional-dep, r=alexcrichton

Resolve: Be less strict while offline.

When offline, the resolver was requiring everything to be downloaded, even dependencies that are not used. This changes it so that the resolver can still resolve unavailable dependencies when offline. This pushes the failure to a later stage of Cargo where it attempts to download the dependency. This makes `-Z offline` work for target-cfg or optional dependencies that are not being used.

Fixes #6014.

This changes the error message significantly for the "unavailable" case (see test diff). I personally think the new error message is clearer, although it is shorter and provides less information. The old error message seemed large and scary, and was a little hard for me to grok. However, I'd be willing to look at tweaking the error behavior if not everyone agrees.

5 years agoAuto merge of #6815 - ehuss:doc-downloads, r=Eh2406
bors [Tue, 2 Apr 2019 21:29:56 +0000 (21:29 +0000)]
Auto merge of #6815 - ehuss:doc-downloads, r=Eh2406

Add some docs for `Downloads`.

Rather than fight with rustfmt which didn't like the inline comment, I decided to just add some more elaborate docs.

5 years agoAdd some docs for `Downloads`.
Eric Huss [Tue, 2 Apr 2019 21:19:53 +0000 (14:19 -0700)]
Add some docs for `Downloads`.

5 years agoAuto merge of #6776 - Eh2406:resolver-simplification, r=alexcrichton
bors [Tue, 2 Apr 2019 20:44:10 +0000 (20:44 +0000)]
Auto merge of #6776 - Eh2406:resolver-simplification, r=alexcrichton

Resolver: A dep is equivalent to one of the things it can resolve to.

This is a series of small changes to the resolver, each one on its own is not worth the cherne, but somehow all together we can add a new optimization rule. The result is that the test in #6283 is no longer exponencial (still a large polynomial, cubick?) and so N can be bumped from 3 to 20. This also means that we pass with all the cases reported in #6258. Resolution is NP-Hard, so we are moving the slow cases around. To reduce the chance that we will be flooded by new bad cases I run the 4 proptests overnight, and they did not find a new exponencial case.

I would recommend reviewing this commit by commit. As each change is pretty simple on its own, but the mixed diff is harder to follow. This is submitted as one big PR as that is @alexcrichton's preference.

A special thanks to @nex3, our conversation was important in convincing me that several of these changes would be needed even in an eventual PubGrub based system. And, the question "why would PubGrub not have a problem with #6283" was wat crystallized this optimization opportunity in my mind.

5 years agoResolve: Be less strict while offline.
Eric Huss [Tue, 2 Apr 2019 20:27:42 +0000 (13:27 -0700)]
Resolve: Be less strict while offline.

5 years agoAdd install-upgrade.
Eric Huss [Sun, 31 Mar 2019 00:33:35 +0000 (17:33 -0700)]
Add install-upgrade.

5 years agoAuto merge of #6811 - ehuss:include-proc-macro, r=alexcrichton
bors [Tue, 2 Apr 2019 14:52:18 +0000 (14:52 +0000)]
Auto merge of #6811 - ehuss:include-proc-macro, r=alexcrichton

Include proc-macros in `build-override`.

This adds proc-macros (and their dependencies) to the `build-override` profile setting.  The motivation is that these are all "build time" dependencies, and as such should probably behave the same.  See the discussion on the [tracking issue](https://github.com/rust-lang/rust/issues/48683#issuecomment-472705245).  My intent is that this paves the way for stabilizing without necessarily waiting for #6577.

The only change here is the line in `with_for_host`, the rest is just renaming for clarity.

This also includes some of the testsuite changes from #6577 to make it easier to check for compiler flags.

5 years agoAuto merge of #6809 - ehuss:glossary-feature, r=alexcrichton
bors [Tue, 2 Apr 2019 14:27:14 +0000 (14:27 +0000)]
Auto merge of #6809 - ehuss:glossary-feature, r=alexcrichton

Update glossary for `feature`.

Added the newly documented `target_feature` to help people disambiguate
the various usages.

5 years agoAuto merge of #6812 - ehuss:wasm-example, r=alexcrichton
bors [Tue, 2 Apr 2019 14:02:15 +0000 (14:02 +0000)]
Auto merge of #6812 - ehuss:wasm-example, r=alexcrichton

Don't include metadata in wasm binary examples.

This removes the metadata hash from wasm example binaries, and consequently also includes the `.wasm` files in the artifact JSON message.

Closes #6810.

I renamed a method and added a new one to maybe make things a little clearer. This cannot be easily tested (see #4973).

5 years agoDon't include metadata in wasm binary examples.
Eric Huss [Mon, 1 Apr 2019 23:53:23 +0000 (16:53 -0700)]
Don't include metadata in wasm binary examples.

5 years agoInclude proc-macros in `build-override`.
Eric Huss [Mon, 1 Apr 2019 23:03:35 +0000 (16:03 -0700)]
Include proc-macros in `build-override`.

5 years agoUpdate glossary for `feature`.
Eric Huss [Mon, 1 Apr 2019 21:43:02 +0000 (14:43 -0700)]
Update glossary for `feature`.

Added the newly documented `target_feature` to help people disambiguate
the various usages.

5 years agoAuto merge of #6759 - yaahallo:cargo-clippy, r=alexcrichton
bors [Mon, 1 Apr 2019 17:23:19 +0000 (17:23 +0000)]
Auto merge of #6759 - yaahallo:cargo-clippy, r=alexcrichton

Cargo clippy

resolves https://github.com/rust-lang/rust-clippy/issues/3837

5 years agoRemove no longer needed fields in `BuildConfig`
Alex Crichton [Mon, 1 Apr 2019 17:22:23 +0000 (10:22 -0700)]
Remove no longer needed fields in `BuildConfig`

Now the fields are just all represented as `rustc_wrapper` which
internally contains all process configuration that's later passed down
to `Rustc` as necessary.

5 years agoAuto merge of #6800 - ehuss:git-cli-force, r=alexcrichton
bors [Mon, 1 Apr 2019 16:19:17 +0000 (16:19 +0000)]
Auto merge of #6800 - ehuss:git-cli-force, r=alexcrichton

Support force-pushed repos with git-fetch-with-cli.

If a git repo had a force push, then the `git-fetch-with-cli` feature would fail to fetch an update.  This adds the `--force` flag to force the fetch.  There's a bit of a lengthy discussion in the [git docs](https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt-ltrefspecgt) about why this is needed when a refspec is supplied.

I also changed it to remove the `--quiet` flag and to capture the output, which is only displayed on error.  I'm not sure what the reasoning for the `--quiet` flag was, but I don't see any harm since the output was previously unused.  This can maybe help people debug problems, however in this situation
all you would see is ` ! [rejected]        master     -> master  (non-fast-forward)` which isn't terribly informative.

Fixes #6795.

5 years agoAuto merge of #6801 - ehuss:install-flags, r=Eh2406
bors [Mon, 1 Apr 2019 14:12:58 +0000 (14:12 +0000)]
Auto merge of #6801 - ehuss:install-flags, r=Eh2406

cargo install: Be more restrictive about cli flags.

Several flags in `cargo install` are silently ignored depending on what is used. This adds some validation so that invalid combinations are rejected.  I have been sorta confused by these in the past.

- The 3 source flags (`--git`, `--path`, and `--registry`) are mutually exclusive.
- The `--git` flags (branch, tag, rev) are only valid if `--git` is specified.
- `--registry` requires a crate name (otherwise it would be ignored and treated as a path source).
- `--version` is only used when a crate name is specified.

5 years agoAuto merge of #6806 - ehuss:warn-semver-metadata, r=Eh2406
bors [Mon, 1 Apr 2019 12:55:31 +0000 (12:55 +0000)]
Auto merge of #6806 - ehuss:warn-semver-metadata, r=Eh2406

Warn on version req with metadata.

Metadata in a version requirement (such as `1.0.0+1234`) is ignored. This adds a warning that it will be ignored.

On crates.io I found about 5 crates, plus a few dozen google-* crates (presumably all created by the same person) which have dependencies of this form.

See discussion at https://github.com/rust-lang/cargo/issues/6504#issuecomment-451254084. cc rust-lang/crates.io#1059 for ongoing discussion about what to do about publishing such versions.

5 years agoAuto merge of #6805 - ehuss:hint-workspace-exclude, r=alexcrichton
bors [Mon, 1 Apr 2019 12:31:20 +0000 (12:31 +0000)]
Auto merge of #6805 - ehuss:hint-workspace-exclude, r=alexcrichton

Add more suggestions on how to deal with excluding a package from a workspace.

Closes #5418

5 years agoAuto merge of #6804 - ehuss:install-path-config2, r=alexcrichton
bors [Mon, 1 Apr 2019 12:06:29 +0000 (12:06 +0000)]
Auto merge of #6804 - ehuss:install-path-config2, r=alexcrichton

Allow `cargo install --path P` to load config from P.

`cargo install` was changed to ignore configs except for the home directory (#6026). However, it seems like there are legitimate needs when using `--path`, so allow loading from that path, too.

Closes #6498.
Closes #6397.

5 years agoAuto merge of #6803 - ehuss:doc-open-multi, r=alexcrichton
bors [Mon, 1 Apr 2019 11:42:02 +0000 (11:42 +0000)]
Auto merge of #6803 - ehuss:doc-open-multi, r=alexcrichton

Allow `cargo doc --open` with multiple packages.

If `cargo doc --open` builds multiple packages, open the first one. This seems pretty natural to me (the first one on the command line, or the first default member if `default-members` is specified, or the root of a workspace). Rustdoc shows a list of crates in the sidebar, so if it doesn't open the one the user wants, it's a trivial matter of clicking on the crate name.

@alexcrichton specifically asked for an error [here](https://github.com/rust-lang/cargo/pull/1828#discussion-diff-39650485). However, at the time I don't think rustdoc dynamically generated the "Crates" listing in the sidebar. Alex, I wonder if your stance still holds?

Closes #5145

5 years agoAuto merge of #6791 - ehuss:unstable-help, r=Eh2406
bors [Mon, 1 Apr 2019 11:17:42 +0000 (11:17 +0000)]
Auto merge of #6791 - ehuss:unstable-help, r=Eh2406

Add some help and documentation for unstable flags.

This is intended to give a little extra information about unstable flags.

- `-Z help` tells you if you can't use it on stable.
- `-Z help` includes link to the unstable chapter.
- `--out-dir` and `--build-plan` on stable give more information about what channels are and a link to their respective tracking issues.  Add links in the man pages, too.

5 years agoAuto merge of #6807 - ehuss:libc-warning, r=alexcrichton
bors [Mon, 1 Apr 2019 10:53:57 +0000 (10:53 +0000)]
Auto merge of #6807 - ehuss:libc-warning, r=alexcrichton

Fix unused import warning.

2019-04-01 nightly introduced a new warning (presumably rust-lang/rust#58805).

5 years agoFix unused import warning.
Eric Huss [Mon, 1 Apr 2019 02:37:26 +0000 (19:37 -0700)]
Fix unused import warning.

5 years agoWarn on version req with metadata.
Eric Huss [Mon, 1 Apr 2019 01:53:54 +0000 (18:53 -0700)]
Warn on version req with metadata.

5 years agoAdd more suggestions on how to deal with excluding a package from a workspace.
Eric Huss [Mon, 1 Apr 2019 00:48:15 +0000 (17:48 -0700)]
Add more suggestions on how to deal with excluding a package from a workspace.

5 years agoAllow `cargo install --path P` to load config from P.
Eric Huss [Mon, 1 Apr 2019 00:13:44 +0000 (17:13 -0700)]
Allow `cargo install --path P` to load config from P.

5 years agoAllow `cargo doc --open` with multiple packages.
Eric Huss [Sun, 31 Mar 2019 22:47:03 +0000 (15:47 -0700)]
Allow `cargo doc --open` with multiple packages.

5 years agoAuto merge of #6802 - ehuss:new-empty-email, r=Eh2406
bors [Sun, 31 Mar 2019 21:14:56 +0000 (21:14 +0000)]
Auto merge of #6802 - ehuss:new-empty-email, r=Eh2406

new/init: Don't include email if it is empty.

For `cargo new` or `cargo init`, if the email address is empty, don't include an empty `<>` in the `authors` field in `Cargo.toml`. This can be useful if you want to include an email address in the git config, but you don't want it in new manifest files.

Closes #4892

5 years agonew/init: Don't include email if it is empty.
Eric Huss [Sun, 31 Mar 2019 21:05:49 +0000 (14:05 -0700)]
new/init: Don't include email if it is empty.

5 years agocargo install: Be more restrictive about cli flags.
Eric Huss [Sun, 31 Mar 2019 19:38:16 +0000 (12:38 -0700)]
cargo install: Be more restrictive about cli flags.

5 years agoSupport force-pushed repos with git-fetch-with-cli.
Eric Huss [Sun, 31 Mar 2019 17:06:23 +0000 (10:06 -0700)]
Support force-pushed repos with git-fetch-with-cli.

5 years agoAuto merge of #6799 - ehuss:fix-member_manifest_version_error-network, r=alexcrichton
bors [Sun, 31 Mar 2019 12:23:06 +0000 (12:23 +0000)]
Auto merge of #6799 - ehuss:fix-member_manifest_version_error-network, r=alexcrichton

Fix member_manifest_version_error accessing the network.

This test was updating the registry via github.  Add a `.cargo/config` file so that it doesn't.

5 years agoFix member_manifest_version_error accessing the network.
Eric Huss [Sun, 31 Mar 2019 02:12:32 +0000 (19:12 -0700)]
Fix member_manifest_version_error accessing the network.

5 years agoconsistently refer to `backtracking` instead of `jump back`, `backjump`, or `jumpback`
Eh2406 [Sat, 30 Mar 2019 19:08:53 +0000 (15:08 -0400)]
consistently refer to `backtracking` instead of `jump back`, `backjump`, or `jumpback`

5 years agoone more comment
Eh2406 [Thu, 28 Mar 2019 00:10:57 +0000 (20:10 -0400)]
one more comment

5 years agofix comments
Jane Lusby [Sat, 30 Mar 2019 00:39:24 +0000 (17:39 -0700)]
fix comments

5 years agoremove unnecessary rustc env for cargo fix
Jane Lusby [Sun, 24 Mar 2019 16:44:22 +0000 (09:44 -0700)]
remove unnecessary rustc env for cargo fix

5 years agoactually fix it so cargo fix kinda works with new wrapper stuff
Jane Lusby [Sun, 24 Mar 2019 16:29:57 +0000 (09:29 -0700)]
actually fix it so cargo fix kinda works with new wrapper stuff

5 years agofix not passing tests
Jane Lusby [Sun, 24 Mar 2019 16:09:12 +0000 (09:09 -0700)]
fix not passing tests

5 years agototally unnecessary template type because its fun
Jane Lusby [Thu, 21 Mar 2019 23:06:06 +0000 (16:06 -0700)]
totally unnecessary template type because its fun

5 years agoimpl centralized RustcWrapper logic
Jane Lusby [Thu, 21 Mar 2019 22:57:14 +0000 (15:57 -0700)]
impl centralized RustcWrapper logic

5 years agofix: non rustup clippy missing error
Jane Lusby [Mon, 18 Mar 2019 23:45:41 +0000 (16:45 -0700)]
fix: non rustup clippy missing error

5 years agofix: remove dbg macro calls
Jane Lusby [Mon, 18 Mar 2019 23:25:44 +0000 (16:25 -0700)]
fix: remove dbg macro calls

5 years agofix: remove profile arg, exe check, add rustup check
Jane Lusby [Mon, 18 Mar 2019 23:22:37 +0000 (16:22 -0700)]
fix: remove profile arg, exe check, add rustup check

5 years agofix: mark clippy-preview unstable, remove cruft
Jane Lusby [Mon, 18 Mar 2019 20:51:29 +0000 (13:51 -0700)]
fix: mark clippy-preview unstable, remove cruft

5 years agofix clippy help text, check for clippy-driver
Jane Lusby [Fri, 15 Mar 2019 18:33:01 +0000 (11:33 -0700)]
fix clippy help text, check for clippy-driver

5 years agoWIP cargo-clippy command
Manish Goregaokar [Thu, 14 Mar 2019 05:53:06 +0000 (22:53 -0700)]
WIP cargo-clippy command

5 years agoAuto merge of #6792 - collin5:patch-1, r=alexcrichton
bors [Fri, 29 Mar 2019 12:31:50 +0000 (12:31 +0000)]
Auto merge of #6792 - collin5:patch-1, r=alexcrichton

Fix Init for Fossil SCM project

I believe [here](https://github.com/rust-lang/cargo/pull/6792/files#diff-149dd4362a3b0dc13b113762713119dfL527) we should be checking if `.fossil` doesn't exist instead of the latter!

5 years agofix vcs init for Fossil project
Collins Abitekaniza [Fri, 29 Mar 2019 09:31:19 +0000 (12:31 +0300)]
fix vcs init for Fossil project

5 years agoAdd some help and documentation for unstable flags.
Eric Huss [Thu, 28 Mar 2019 22:22:59 +0000 (15:22 -0700)]
Add some help and documentation for unstable flags.

5 years agoadd a type alias for Age and add some comments
Eh2406 [Thu, 28 Mar 2019 00:07:24 +0000 (20:07 -0400)]
add a type alias for Age and add some comments

5 years agonever use a generalized in an error message
Eh2406 [Tue, 26 Mar 2019 19:02:52 +0000 (15:02 -0400)]
never use a generalized in an error message

5 years agorename fuzz tests so they can be run easily
Eh2406 [Sat, 23 Mar 2019 02:51:42 +0000 (22:51 -0400)]
rename fuzz tests so they can be run easily

5 years agoif we are a descendant of the trigger of the problem.
Eh2406 [Sat, 23 Mar 2019 02:30:06 +0000 (22:30 -0400)]
if we are a descendant of the trigger of the problem.
The best generalization of this is to let things bubble up
and let `jumpback_critical_id` figure this out.

5 years agoA dep is equivalent to one of the things it can resolve to.
Eh2406 [Mon, 18 Mar 2019 21:40:23 +0000 (17:40 -0400)]
A dep is equivalent to one of the things it can resolve to.
Thus, if all the things it can resolve to have already ben determined
to be conflicting, then we can just say that we conflict with the parent.

5 years agoWe have more then one conflict that matches, so pick one with the max back-jumping.
Eh2406 [Sat, 16 Mar 2019 21:41:32 +0000 (17:41 -0400)]
We have more then one conflict that matches, so pick one with the max back-jumping.

5 years agoproptest, do we have more then one conflict that matches?
Eh2406 [Sat, 16 Mar 2019 19:14:27 +0000 (15:14 -0400)]
proptest, do we have more then one conflict that matches?

Yes, apparently we do. So I can't do optimizations based on that being unique.

5 years agopre calculate how far back to back-jump
Eh2406 [Sat, 16 Mar 2019 17:49:46 +0000 (13:49 -0400)]
pre calculate how far back to back-jump

5 years agomove compatible to a type
Eh2406 [Sat, 16 Mar 2019 13:25:19 +0000 (09:25 -0400)]
move compatible to a type

This makes a O(n^2) loop in the hart of the resolver a O(n) loop,
 but n is small and hashing is not free.
So the main reason to do this is to make the code clearer.

5 years agoAuto merge of #6787 - ehuss:code-cleanup, r=alexcrichton
bors [Wed, 27 Mar 2019 12:26:45 +0000 (12:26 +0000)]
Auto merge of #6787 - ehuss:code-cleanup, r=alexcrichton

Code cleanup

I think these changes should not be controversial, at least it looks cleaner to me. Split up into separate commits for different things.

5 years agoAuto merge of #6298 - lu-zero:rustc-link-args, r=alexcrichton
bors [Wed, 27 Mar 2019 12:03:57 +0000 (12:03 +0000)]
Auto merge of #6298 - lu-zero:rustc-link-args, r=alexcrichton

Add cargo:rustc-link-arg to pass custom linker arguments

It is useful to produce correct `cdylibs` on platforms such as Linux and
MacOS.

Groundwork to address https://github.com/rust-lang/cargo/issues/5045 in the future.

5 years agoCleanup: Misc.
Eric Huss [Wed, 27 Mar 2019 02:06:08 +0000 (19:06 -0700)]
Cleanup: Misc.

5 years agoCleanup: Remove redundant clones.
Eric Huss [Wed, 27 Mar 2019 01:51:13 +0000 (18:51 -0700)]
Cleanup: Remove redundant clones.

5 years agoCleanup: Remove unnecessary borrows.
Eric Huss [Wed, 27 Mar 2019 00:53:53 +0000 (17:53 -0700)]
Cleanup: Remove unnecessary borrows.

5 years agoAuto merge of #6786 - ehuss:remove-is_nightly-test-checks, r=dwijnand
bors [Tue, 26 Mar 2019 23:45:46 +0000 (23:45 +0000)]
Auto merge of #6786 - ehuss:remove-is_nightly-test-checks, r=dwijnand

Testsuite: remove some unnecessary is_nightly checks.

5 years agoAuto merge of #6534 - ehuss:meta-deps-name-null, r=alexcrichton
bors [Tue, 26 Mar 2019 23:22:07 +0000 (23:22 +0000)]
Auto merge of #6534 - ehuss:meta-deps-name-null, r=alexcrichton

cargo metadata: Don't show `null` deps.

If a package has a dependency without a library target, the "name" field was
showing up as null in `resolve.nodes.deps`. At this time (AFAIK), binary-only
dependencies are always ignored. Instead of making users filter out this entry
(or more commonly, crash), just don't include it.

5 years agoAuto merge of #6785 - ehuss:fingerprint-cleanup, r=dwijnand
bors [Tue, 26 Mar 2019 22:25:44 +0000 (22:25 +0000)]
Auto merge of #6785 - ehuss:fingerprint-cleanup, r=dwijnand

Some fingerprint cleanup.

Just a minor cleanup.

Move `CARGO_PKG_*` values from Metadata to Fingerprint (added in #3857).  Closes #6208.  This prevents stale artifacts from being left behind when these values change. Also tracks changes to the "repository" value (added in #6096).

Remove `edition` as a separate field. It is already tracked in `target`. This was required previously to #5816 which added per-target editions.

Also adds a helper to the testsuite to make globbing easier.

5 years agoTestsuite: remove some unnecessary is_nightly checks.
Eric Huss [Tue, 26 Mar 2019 20:56:14 +0000 (13:56 -0700)]
Testsuite: remove some unnecessary is_nightly checks.

5 years agoSome fingerprint cleanup.
Eric Huss [Tue, 26 Mar 2019 20:21:05 +0000 (13:21 -0700)]
Some fingerprint cleanup.

5 years agoAuto merge of #6782 - ehuss:build-script-fingerprint-fixes, r=alexcrichton
bors [Tue, 26 Mar 2019 00:09:43 +0000 (00:09 +0000)]
Auto merge of #6782 - ehuss:build-script-fingerprint-fixes, r=alexcrichton

Fix fingerprint for canceled build script.

Fixes #6770. See that issue for a description.

The fix is to include the compilation of the build script itself in the fingerprint of the `RunCustomBuild` Unit.

This also includes some documentation for how fingerprints work.

Also includes a test for docker-style caching of dependencies where timestamps get truncated to the nearest second.