]> git.proxmox.com Git - cargo.git/log
cargo.git
7 years agoAuto merge of #4441 - vignesh-sankaran:manifest-doc-fix, r=alexcrichton
bors [Sun, 27 Aug 2017 15:39:13 +0000 (15:39 +0000)]
Auto merge of #4441 - vignesh-sankaran:manifest-doc-fix, r=alexcrichton

Replace maintenance status with ellipses

Since the default maintenance status isn't set to none if it isn't set, feel it'd be more appropriate to have ellipses instead like the other badge docs.

7 years agoReplace maintenance status badge none with ellipses
Vignesh [Sun, 27 Aug 2017 11:19:58 +0000 (21:19 +1000)]
Replace maintenance status badge none with ellipses

7 years agoAuto merge of #4439 - ishitatsuyuki:bench-cleanup, r=matklad
bors [Sun, 27 Aug 2017 07:41:33 +0000 (07:41 +0000)]
Auto merge of #4439 - ishitatsuyuki:bench-cleanup, r=matklad

Gate extern crates for bench tests

I tried my best to skim through the `extern crate` statements, and I hope this will unblock the unused extern crates PR.

7 years agoFix remaining test failures
Tatsuyuki Ishi [Sun, 27 Aug 2017 07:31:16 +0000 (16:31 +0900)]
Fix remaining test failures

7 years agotests/cfg: allow unused extern crates
Tatsuyuki Ishi [Sun, 27 Aug 2017 07:14:15 +0000 (16:14 +0900)]
tests/cfg: allow unused extern crates

7 years agotests/build-script: allow unused extern crates
Tatsuyuki Ishi [Sun, 27 Aug 2017 07:10:54 +0000 (16:10 +0900)]
tests/build-script: allow unused extern crates

7 years agoGate feature for bench tests
Tatsuyuki Ishi [Sun, 27 Aug 2017 05:57:22 +0000 (14:57 +0900)]
Gate feature for bench tests

7 years agoGate extern crates for bench tests
Tatsuyuki Ishi [Sun, 27 Aug 2017 05:30:13 +0000 (14:30 +0900)]
Gate extern crates for bench tests

7 years agoAuto merge of #4358 - Mark-Simulacrum:fix-cfg-cargo, r=alexcrichton
bors [Sat, 26 Aug 2017 17:57:40 +0000 (17:57 +0000)]
Auto merge of #4358 - Mark-Simulacrum:fix-cfg-cargo, r=alexcrichton

Discover crate type information late if necessary.

Some crates aren't found during eager crate-type searching due to being behind `cfg(...)` flags. We still want to be able to handle these, though, so when necessary we now call rustc again to get crate-type information for these cfg-ed crates.

This is necessary for https://github.com/rust-lang/rust/pull/41991.

r? @alexcrichton

7 years agoAuto merge of #4437 - ishitatsuyuki:deps-purge, r=matklad
bors [Sat, 26 Aug 2017 15:18:46 +0000 (15:18 +0000)]
Auto merge of #4437 - ishitatsuyuki:deps-purge, r=matklad

Purge deps, round 2

Sorry for creating so much iterations, I have no local build of the new compiler :)

7 years agoDiscover crate type information late if necessary.
Mark Simulacrum [Mon, 21 Aug 2017 11:46:31 +0000 (05:46 -0600)]
Discover crate type information late if necessary.

Some crates aren't found during eager crate-type searching due to being
behind `cfg(...)` flags. We still want to be able to handle these,
though, so when necessary we now call rustc again to get crate-type
information for these cfg-ed crates.

7 years agoPurge deps, round 2
Tatsuyuki Ishi [Sat, 26 Aug 2017 14:36:13 +0000 (23:36 +0900)]
Purge deps, round 2

7 years agoAuto merge of #4435 - ishitatsuyuki:deps-purge, r=matklad
bors [Sat, 26 Aug 2017 10:01:15 +0000 (10:01 +0000)]
Auto merge of #4435 - ishitatsuyuki:deps-purge, r=matklad

Purge unused extern crates

7 years agoPurge unused extern crates
Tatsuyuki Ishi [Sat, 26 Aug 2017 09:59:51 +0000 (18:59 +0900)]
Purge unused extern crates

7 years agoAuto merge of #4433 - alexcrichton:unstable-features, r=matklad
bors [Fri, 25 Aug 2017 16:02:02 +0000 (16:02 +0000)]
Auto merge of #4433 - alexcrichton:unstable-features, r=matklad

Add infrastructure for nightly features and flags

This PR starts adding infrastructure in Cargo for nightly features and nightly flags. The current design looks like:

* There's a new `package.cargo-features` manifest key which accepts an array of strings. This array of strings is the list of enabled Cargo features for that crate.
* A new suite of flags behind `-Z`, like the compiler, are accepted on the command line for all commands.
* Features and unstable flags in Cargo are required to be used on Cargo's nightly channel, which is the same as Rust's nightly channel.
* Features and unstable flags cannot be used on the stable/beta channels of Rust/Cargo.
* Crates which enable features in their manifest are disallowed from being published to crates.io

The motivation behind this support is unblock a number of efforts in Cargo by allowing them to safely get implemented behind a nightly feature gate. Once behind a feature gate they can iterate in-tree without having to worry about "insta stability" and we can also get valuable usage feedback about upstream users.

Closes https://github.com/rust-lang/cargo/issues/4409

7 years agoAdd infrastructure for nightly Cargo flags
Alex Crichton [Thu, 24 Aug 2017 22:04:46 +0000 (15:04 -0700)]
Add infrastructure for nightly Cargo flags

7 years agoAdd support for nightly features in Cargo
Alex Crichton [Thu, 24 Aug 2017 19:54:57 +0000 (12:54 -0700)]
Add support for nightly features in Cargo

7 years agoAuto merge of #4431 - vignesh-sankaran:maintenance-badge-docs, r=alexcrichton
bors [Thu, 24 Aug 2017 13:56:50 +0000 (13:56 +0000)]
Auto merge of #4431 - vignesh-sankaran:maintenance-badge-docs, r=alexcrichton

Add maintenance badge docs

Pending merging of [this PR for crates.io](https://github.com/rust-lang/crates.io/pull/952). This should close off [#704 on crates.io](https://github.com/rust-lang/crates.io/issues/704). I've also updated the badge metadata docs and reordered the fields into groups by build, code coverage, and maintenance.

So I've decided to put the list of possible badge options in the documentation, we'll have to find another place to put more detailed descriptions of the available maintenance badges.

7 years agoAdded maintenance badge and reordered badge metadata fields
Vignesh [Thu, 24 Aug 2017 05:33:52 +0000 (15:33 +1000)]
Added maintenance badge and reordered badge metadata fields

7 years agoAuto merge of #4432 - potocpav:patch-1, r=matklad
bors [Thu, 24 Aug 2017 09:39:40 +0000 (09:39 +0000)]
Auto merge of #4432 - potocpav:patch-1, r=matklad

Correct a paragraph

The previous formulation was incorrect in the descriptions of the `x` and `y` version numbers.

7 years agoCorrect an inaccuracy
Pavel Potocek [Thu, 24 Aug 2017 09:22:09 +0000 (11:22 +0200)]
Correct an inaccuracy

7 years agoAuto merge of #4429 - ishitatsuyuki:test-purge, r=matklad
bors [Thu, 24 Aug 2017 09:01:00 +0000 (09:01 +0000)]
Auto merge of #4429 - ishitatsuyuki:test-purge, r=matklad

cargotest: purge deps

Blocking rust-lang/rust#42588.

7 years agoCorrect and reword a paragraph
Pavel Potocek [Thu, 24 Aug 2017 08:52:12 +0000 (10:52 +0200)]
Correct and reword a paragraph

The previous formulation was incorrect in the descriptions of the `x` and `y` version numbers.

7 years agocargotest: purge deps
Tatsuyuki Ishi [Thu, 24 Aug 2017 03:56:47 +0000 (12:56 +0900)]
cargotest: purge deps

7 years agoAuto merge of #4424 - Xanewok:process-builder-api, r=alexcrichton
bors [Tue, 22 Aug 2017 15:26:56 +0000 (15:26 +0000)]
Auto merge of #4424 - Xanewok:process-builder-api, r=alexcrichton

Add `fn args_replace` and `fn get_program` to `ProcessBuilder`

`Executor::exec()` provides a `ProcessBuilder` argument representing compiler call and if someone wants to use it or modify it for their own purposes, they have to (partially) recreate it themselves.

This:
* makes the argument modification possible (via `args_replace`, analogous to `env_remove`)
* exposes the program that will be run (via `get_program`, in case `rustc` is overriden via wrapper etc.).

r? @alexcrichton

7 years agoAdd `fn args_replace` and `fn get_program` to `ProcessBuilder`
Igor Matuszewski [Tue, 22 Aug 2017 15:13:00 +0000 (17:13 +0200)]
Add `fn args_replace` and `fn get_program` to `ProcessBuilder`

7 years agoAuto merge of #4416 - Xanewok:more-executor-params, r=alexcrichton
bors [Sun, 20 Aug 2017 18:35:22 +0000 (18:35 +0000)]
Auto merge of #4416 - Xanewok:more-executor-params, r=alexcrichton

Expose `Target` and `Unit` params to appropriate `Executor` callbacks

This effectively does only two things:
* Pass existing `&Unit` to `init()`
* Pass existing `&Target` to `exec()`s

Also updated doc comments slightly.

The `init()` is called for every `Work` preparation by `rustc()` and since it's not called once (not sure if intended?), it'd be good to include more information for which `Unit` the `rustc` process invocation has been initially prepared (I think more importantly it shows that `init()` is called many times for many targets).
Additionally, it'd be good to know about `Unit` compiled in the `exec()` callbacks in more structured manner (so the user doesn't have to parse the `ProcessBuilder` arguments and/or make certain assumptions) and since `target` was already cloned and moved into the closure, it was only a matter of exposing it.

I think it'd be ideal to provide all the necessary information to recreate a `Unit` but with a static lifetime needed for the closure, however this would mean cloning more data per-target ([`Kind`](https://github.com/rust-lang/cargo/blob/master/src/cargo/ops/cargo_rustc/mod.rs#L41) should be basically free, however not sure if cloning [`Profile`](https://github.com/rust-lang/cargo/blob/master/src/cargo/core/manifest.rs#L151) is acceptable). With this, `Executor` users could query `Context` more easily (e.g. to get a unit dep graph! :smile:), as the API accepts `Unit`s in many places.

r? @alexcrichton
cc @nrc

EDIT:
This changes the public API, not sure if there's something else I should do about it, only ran `cargo test` locally.

7 years agoAuto merge of #4364 - RalfJung:feat, r=alexcrichton
bors [Sun, 20 Aug 2017 12:57:50 +0000 (12:57 +0000)]
Auto merge of #4364 - RalfJung:feat, r=alexcrichton

Required dependencies are not features

Also, while I was at it, I fixed an error message which complained about something not being an optional dependency, when really what mattered was that it was not a dependency at all.

I made a bunch of guesses about how things work. These guesses ended up as comments in the commit (so hopefully, the next reader of these files has to guess less). I am not totally certain these comments are all correct, so please yell if not. :)

In particular, for resolve_features, I observed that dependencies get compiled even when they are not returned from that function. But judging from how the function used to behave, it actually returns all dependencies, even those that have nothing to do with any features. (Making the name rather misleading, TBH...)

Fixes #4363

7 years agoExpose `Target` and `Unit` params to appropriate `Executor` callbacks
Igor Matuszewski [Sat, 19 Aug 2017 20:47:19 +0000 (22:47 +0200)]
Expose `Target` and `Unit` params to appropriate `Executor` callbacks

7 years agofix borrowing the shell twice
Ralf Jung [Fri, 18 Aug 2017 18:10:34 +0000 (20:10 +0200)]
fix borrowing the shell twice

7 years agoUsing required dep as a feature is a warning for now, not an error
Ralf Jung [Fri, 18 Aug 2017 17:37:12 +0000 (19:37 +0200)]
Using required dep as a feature is a warning for now, not an error

7 years agoAuto merge of #4400 - behnam:pr4157, r=alexcrichton
bors [Thu, 17 Aug 2017 23:09:50 +0000 (23:09 +0000)]
Auto merge of #4400 - behnam:pr4157, r=alexcrichton

[check|build|rustc] Add --all-targets option

`cargo check` does not check all targets by default, and to check all,
you need to call it `cargo check --tests --examples --bins --benches`.

Here, we implement `--all-targets` For `check`, `build`, and `rustc`.

For consitency, `--all-targets` is also added to other commands like
`test` although "all targets" is the default behavior.

This is a rebase of <https://github.com/rust-lang/cargo/pull/4157>

7 years agoimprove misleading error message
Ralf Jung [Sat, 5 Aug 2017 04:27:26 +0000 (21:27 -0700)]
improve misleading error message

7 years agodetect required dependencies used as features
Ralf Jung [Sat, 5 Aug 2017 04:21:09 +0000 (21:21 -0700)]
detect required dependencies used as features

7 years agotest for mandatory dependencies not to be considered features
Ralf Jung [Sat, 5 Aug 2017 03:21:38 +0000 (20:21 -0700)]
test for mandatory dependencies not to be considered features

7 years agoAuto merge of #4404 - parkovski:master, r=alexcrichton
bors [Mon, 14 Aug 2017 23:23:05 +0000 (23:23 +0000)]
Auto merge of #4404 - parkovski:master, r=alexcrichton

Fix #4370 - init panic in C:\ or /

This fixes the crash in this issue, but the error message is strange - unable to create directory 'C:\\.'. I don't have write permissions there without becoming admin, so I suspect it's just a permission issue, but the weird error can be fixed by calling Path::canonicalize on line 300.

7 years agoFix #4370 - init panic in C:\ or /
Parker Snell [Mon, 14 Aug 2017 18:02:07 +0000 (11:02 -0700)]
Fix #4370 - init panic in C:\ or /

7 years agoAuto merge of #4402 - bluss:doc-rustdocflags, r=alexcrichton
bors [Sun, 13 Aug 2017 12:40:53 +0000 (12:40 +0000)]
Auto merge of #4402 - bluss:doc-rustdocflags, r=alexcrichton

Document `RUSTDOCFLAGS`

Documentation for this environment variable was missing. It's supported in stable releases of Rust already.

7 years agoDocument `RUSTDOCFLAGS`
bluss [Sun, 13 Aug 2017 12:27:27 +0000 (14:27 +0200)]
Document `RUSTDOCFLAGS`

7 years agoAuto merge of #4389 - matklad:testless, r=alexcrichton
bors [Sat, 12 Aug 2017 22:08:54 +0000 (22:08 +0000)]
Auto merge of #4389 - matklad:testless, r=alexcrichton

Allow to skip test code during publishing

closes #4365

I don't have time to review this code carefully right now, but looks like it does the job.

7 years agoAllow to skip test code during publishing
Aleksey Kladov [Wed, 9 Aug 2017 21:54:09 +0000 (00:54 +0300)]
Allow to skip test code during publishing

7 years agoAuto merge of #4393 - burtonageo:update-cargo-new-template, r=matklad
bors [Sat, 12 Aug 2017 14:46:51 +0000 (14:46 +0000)]
Auto merge of #4393 - burtonageo:update-cargo-new-template, r=matklad

Update lib template for `cargo new` so that the placeholder test contains an assertion

When you run `rustfmt` on the default generated lib template, it modifies it as shown [here](https://play.rust-lang.org/?gist=bd44610731e26e76719e75d47e598990&version=undefined)

7 years ago[check|build|rustc] Add --all-targets option
Stepan Koltsov [Fri, 11 Aug 2017 01:46:07 +0000 (18:46 -0700)]
[check|build|rustc] Add --all-targets option

`cargo check` does not check all targets by default, and to check all,
you need to call it `cargo check --tests --examples --bins --benches`.

Here, we implement `--all-targets` For `check`, `build`, and `rustc`.

For consitency, `--all-targets` is also added to other commands like
`test` although "all targets" is the default behavior.

This is a rebase of <https://github.com/rust-lang/cargo/pull/4157>

7 years agoAuto merge of #4398 - debris:url_4394, r=alexcrichton
bors [Fri, 11 Aug 2017 17:12:45 +0000 (17:12 +0000)]
Auto merge of #4398 - debris:url_4394, r=alexcrichton

Fixed panic when canonicalizing not-a-base-url, fixes #4394

Fixes #4394. Majority of the changes are caused by propagating error upstream to `SourceId` and `GitSource`.

7 years agoFix implementation and tests for cannot-be-a-base-url canonicalization
debris [Fri, 11 Aug 2017 15:39:18 +0000 (17:39 +0200)]
Fix implementation and tests for cannot-be-a-base-url canonicalization

7 years agoFixed panic when canonicalizing not-a-base-url, fixes #4394
debris [Fri, 11 Aug 2017 14:25:19 +0000 (16:25 +0200)]
Fixed panic when canonicalizing not-a-base-url, fixes #4394

7 years agoAuto merge of #4396 - vignesh-sankaran:documentation-blacklist-list-fix, r=matklad
bors [Fri, 11 Aug 2017 07:28:15 +0000 (07:28 +0000)]
Auto merge of #4396 - vignesh-sankaran:documentation-blacklist-list-fix, r=matklad

Fix list rendering in manifest.md

Fixes a list rendering problem introduced in #4237.

7 years agoFix list rendering for blacklisted hosts
Vignesh [Fri, 11 Aug 2017 05:18:21 +0000 (15:18 +1000)]
Fix list rendering for blacklisted hosts

7 years agoAdd a placeholder assertion in the new lib project template
George Burton [Thu, 10 Aug 2017 22:30:33 +0000 (23:30 +0100)]
Add a placeholder assertion in the new lib project template

7 years agoFix tests
George Burton [Thu, 10 Aug 2017 21:19:41 +0000 (22:19 +0100)]
Fix tests

7 years agoUpdate lib template for `cargo new` so that it conforms to rustfmt style by default
George Burton [Thu, 10 Aug 2017 20:50:41 +0000 (21:50 +0100)]
Update lib template for `cargo new` so that it conforms to rustfmt style by default

7 years agoAuto merge of #4390 - alexcrichton:read-hard-links, r=matklad
bors [Thu, 10 Aug 2017 09:04:21 +0000 (09:04 +0000)]
Auto merge of #4390 - alexcrichton:read-hard-links, r=matklad

Use `same-file` to avoid unnecessary hard links

This is targeted at removing the need for a workaround in rust-lang/rust#39518,
allowing the main rust build system to move back to hard links which should be
much more efficient.

7 years agoAuto merge of #4386 - pornel:backups, r=alexcrichton
bors [Thu, 10 Aug 2017 05:11:28 +0000 (05:11 +0000)]
Auto merge of #4386 - pornel:backups, r=alexcrichton

Exclude target directory from Time Machine

Fixes #3884

7 years agoExclude target directory from Time Machine
Kornel [Wed, 9 Aug 2017 14:41:53 +0000 (15:41 +0100)]
Exclude target directory from Time Machine

Temporary/derived files outside dedicated system directories should be explicitly excluded from backups to prevent undesirable bloat and churn.

7 years agoUse `same-file` to avoid unnecessary hard links
Alex Crichton [Thu, 10 Aug 2017 00:22:34 +0000 (17:22 -0700)]
Use `same-file` to avoid unnecessary hard links

This is targeted at removing the need for a workaround in rust-lang/rust#39518,
allowing the main rust build system to move back to hard links which should be
much more efficient.

7 years agoAuto merge of #4384 - ivanbakel:unused_mut, r=alexcrichton
bors [Wed, 9 Aug 2017 17:42:20 +0000 (17:42 +0000)]
Auto merge of #4384 - ivanbakel:unused_mut, r=alexcrichton

Fixed some variables being unnecessarily mutable

### Changes

Some variables are marked `mut` when they don't need to be. This PR changes those variables to no longer be `mut`.

### Context

PR on https://github.com/rust-lang/rust/pull/43582

tl:dr; There's a bug with the mutability checker that sometimes marks mutable ref variables as being used when they're not.

7 years agoAuto merge of #4382 - Xanewok:expose-filter-rule, r=alexcrichton
bors [Wed, 9 Aug 2017 16:30:21 +0000 (16:30 +0000)]
Auto merge of #4382 - Xanewok:expose-filter-rule, r=alexcrichton

Expose ops::cargo_compile::FilterRule

I've been mindlessly copying and consuming the Cargo API to work on the build plan prototype for RLS and I noticed that, it seems, pub `ops::cargo_compile::CompileFilter` is exported, but not the `ops::cargo_compile::FilterRule`, which `CompileFilter` uses, as a part of a public API.

If I'm wrong and missing something, feel free to ignore/close it. It was possible to match/destructure `CompileFilter` before, but with this change it's possible to use the underlying type.

7 years agoFixed instance in Windows cfg.
Isaac van Bakel [Wed, 9 Aug 2017 15:11:04 +0000 (16:11 +0100)]
Fixed instance in Windows cfg.

7 years agoFixed variables being unnecessarily mut.
Isaac van Bakel [Wed, 9 Aug 2017 14:37:54 +0000 (15:37 +0100)]
Fixed variables being unnecessarily mut.

7 years agoAuto merge of #4378 - behnam:ignore, r=alexcrichton
bors [Wed, 9 Aug 2017 14:33:51 +0000 (14:33 +0000)]
Auto merge of #4378 - behnam:ignore, r=alexcrichton

[sources/path] Support leading slash in glob patterns

Background: https://github.com/rust-lang/cargo/issues/4268

This diff takes us to **Stage 1.1** of the migration plan by allowing
glob patterns to include a leading slash, so that glob patterns can be
updated, if needed, to start with a slash, closer to the future behavior
with gitignore-like matching.

Why is this stage needed?

It's common to have `package.include` set like this:
```
include = ["src/**"]
```
In old interpretation, this would only include all files under the `src`
directory under the package root. With the new interpretation, this
would match any path with some directory called `src`, even if it's not
directly under the package root.

After this patch, package owners can start marking glob patters with a
leading slash to fix the warning thrown, if any.

One thing to notice here is that there are no extra matchings, but, if
a manifest has already a pattern with a leading slash, this would
silently start matching it with the paths. I believe this is fine, since
the old behavior would have been for the pattern to not match anything,
therefore the item was useless.

See also <https://github.com/rust-lang/cargo/issues/4377> for suggestion
to throw warning on useless/invalid patterns in these fields.

7 years agoAuto merge of #3611 - tylerwhall:stable-metadata, r=alexcrichton
bors [Wed, 9 Aug 2017 14:10:12 +0000 (14:10 +0000)]
Auto merge of #3611 - tylerwhall:stable-metadata, r=alexcrichton

Stable metadata hashes across workspaces

Currently a crate from a path source will have its metadata hash incorporate its absolute path on the system where it is built. This always impacts top-level crates, which means that compiling the same source with the same dependencies and compiler version will generate libraries with symbol names that vary depending on where the workspace resides on the machine.

This is hopefully a general solution to the hack we've used in meta-rust to make dynamic linking reliable.
meta-rust/meta-rust@0e6cf94

For paths inside the Cargo workspace, hash their SourceId relative to the root of the workspace. Paths outside of a workspace are still hashed as absolute.

This stability is important for reproducible builds as part of a larger build system that employs caching of artifacts, such as OpenEmbedded.

OpenEmbedded tightly controls all inputs to a build and its caching assumes that an equivalent artifact will always result from the same set of inputs. The workspace path is not considered to be an influential input, however.

For example, if Cargo is used to compile libstd shared objects which downstream crates link to dynamically, it must be possible to rebuild libstd given the same inputs and produce a library that is at least link-compatible with the original. If the build system happens to cache the downstream crates but needs to rebuild libstd and the user happens to be building in a different workspace path, currently Cargo will generate a library incompatible with the original and the downstream executables will fail at runtime on the target.

7 years agoExpose ops::cargo_compile::FilterRule
Igor Matuszewski [Tue, 8 Aug 2017 11:01:44 +0000 (13:01 +0200)]
Expose ops::cargo_compile::FilterRule

7 years agoAuto merge of #4376 - behnam:virtual, r=alexcrichton
bors [Tue, 8 Aug 2017 00:58:29 +0000 (00:58 +0000)]
Auto merge of #4376 - behnam:virtual, r=alexcrichton

[docs/manifest] Add Virtual Manifest section

Current documentation does not mention Virtual Manifests at all, which
can be confusing because they appear in error messages.

Here we add the definition, and provide a hint about `--all` option for
most cargo commands, which allow the command to work in the way most
probably expected.

Fixes <https://github.com/rust-lang/cargo/issues/3526>

7 years agoAuto merge of #4374 - behnam:new-init, r=alexcrichton
bors [Tue, 8 Aug 2017 00:05:36 +0000 (00:05 +0000)]
Auto merge of #4374 - behnam:new-init, r=alexcrichton

[cargo_new] Hint to use `cargo init` on existing dir

The `new` command always expects a non-existing path. The `init` command
always expects an existing path. Therefore, it makes sense to hint to
use `init` if the pre-condition to `new` is not satisfied.

Fixes <#4366>

7 years agoAuto merge of #4375 - behnam:root-vs-repo, r=alexcrichton
bors [Mon, 7 Aug 2017 23:40:25 +0000 (23:40 +0000)]
Auto merge of #4375 - behnam:root-vs-repo, r=alexcrichton

[docs] Update language regarding repository vs package root

In the current documentation, there are many places with language that
assumes a *repository* (as in VCS) is the same as *package root* (the
directory where `Cargo.toml` sits).

With the new workspace features, this is far from true now, and the
inaccurate language makes it difficault for newbies or developers
without much familiarity with the cargo internals with authoring their
manifest files.

This diff tries to use the right terms for places any of these concepts
is referred to:

* Package root,
* Workspace root,
* VCS repository, and
* Package repository/index, like crates.io.

Fixes <https://github.com/rust-lang/cargo/issues/4367>

7 years ago[sources/path] Support leading slash in glob patterns
Behnam Esfahbod [Mon, 7 Aug 2017 19:48:12 +0000 (12:48 -0700)]
[sources/path] Support leading slash in glob patterns

Background: https://github.com/rust-lang/cargo/issues/4268

This diff takes us to **Stage 1.1** of the migration plan by allowing
glob patterns to include a leading slash, so that glob patterns can be
updated, if needed, to start with a slash, closer to the future behavior
with gitignore-like matching.

Why is this stage needed?

It's common to have `package.include` set like this:
```
include = ["src/**"]
```
In old interpretation, this would only include all files under the `src`
directory under the package root. With the new interpretation, this
would match any path with some directory called `src`, even if it's not
directly under the package root.

After this patch, package owners can start marking glob patters with a
leading slash to fix the warning thrown, if any.

One thing to notice here is that there are no extra matchings, but, if
a manifest has already a pattern with a leading slash, this would
silently start matching it with the paths. I believe this is fine, since
the old behavior would have been for the pattern to not match anything,
therefore the item was useless.

See also <https://github.com/rust-lang/cargo/issues/4377> for suggestion
to throw warning on useless/invalid patterns in these fields.

7 years ago[docs/manifest] Add Virtual Manifest section
Behnam Esfahbod [Mon, 7 Aug 2017 18:44:34 +0000 (11:44 -0700)]
[docs/manifest] Add Virtual Manifest section

Current documentation does not mention Virtual Manifests at all, which
can be confusing because they appear in error messages.

Here we add the definition, and provide a hint about `--all` option for
most cargo commands, which allow the command to work in the way most
probably expected.

Fixes <https://github.com/rust-lang/cargo/issues/3526>

7 years ago[docs] Wrap long lines
Behnam Esfahbod [Mon, 7 Aug 2017 18:26:53 +0000 (11:26 -0700)]
[docs] Wrap long lines

7 years ago[docs] Update language regarding repository vs package root
Behnam Esfahbod [Mon, 7 Aug 2017 18:11:36 +0000 (11:11 -0700)]
[docs] Update language regarding repository vs package root

In the current documentation, there are many places with language that
assumes a *repository* (as in VCS) is the same as *package root* (the
directory where `Cargo.toml` sits).

With the new workspace features, this is far from true now, and the
inaccurate language makes it difficault for newbies or developers
without much familiarity with the cargo internals with authoring their
manifest files.

This diff tries to use the right terms for places any of these concepts
is referred to:

* Package root,
* Workspace root,
* VCS repository, and
* Package repository/index, like crates.io.

7 years ago[cargo_new] Hint to use `cargo init` on existing dir
Behnam Esfahbod [Mon, 7 Aug 2017 16:31:32 +0000 (09:31 -0700)]
[cargo_new] Hint to use `cargo init` on existing dir

The `new` command always expects a non-existing path. The `init` command
always expects an existing path. Therefore, it makes sense to hint to
use `init` if the pre-condition to `new` is not satisfied.

Fixes <https://github.com/rust-lang/cargo/issues/4366>

7 years ago[bin/init] Update USAGE
Behnam Esfahbod [Mon, 7 Aug 2017 16:05:02 +0000 (09:05 -0700)]
[bin/init] Update USAGE

7 years agoAuto merge of #4372 - frankmcsherry:patch-1, r=alexcrichton
bors [Mon, 7 Aug 2017 04:12:18 +0000 (04:12 +0000)]
Auto merge of #4372 - frankmcsherry:patch-1, r=alexcrichton

Modernize explanation of `build.rs`

After some recent head-banging, it was explained to me that `"build.rs"` is a special file name, and that Cargo will build such a file even if you do not expect it to, for example if `Cargo.toml` contains the commented out line

```
#build = "build.rs"
```

Some experimentation lead me to the described behavior, but if it misses any subtle details please feel free to correct. The old text is incorrect, though.

7 years agoAuto merge of #4369 - Wallacoloo:specifying-dependencies-typo, r=alexcrichton
bors [Mon, 7 Aug 2017 03:49:33 +0000 (03:49 +0000)]
Auto merge of #4369 - Wallacoloo:specifying-dependencies-typo, r=alexcrichton

Fix repeated "to to" in Specifying Dependencies

Fixes the typo:

> [...] boil down to the ability to **to** work with a crate [...]

7 years agoModernize explanation of `build.rs`
Frank McSherry [Sun, 6 Aug 2017 20:57:13 +0000 (16:57 -0400)]
Modernize explanation of `build.rs`

After some recent head-banging, it was explained to me that `"build.rs"` is a special file name, and that Cargo will build such a file even if you do not expect it to, for example if `Cargo.toml` contains the commented out line

```
#build = "build.rs"
```

Some experimentation lead me to the described behavior, but if it misses any subtle details please feel free to correct. The old text is incorrect, though.

7 years agoFix repeated "to to" in Specifying Dependencies
Colin Wallace [Sun, 6 Aug 2017 02:01:24 +0000 (19:01 -0700)]
Fix repeated "to to" in Specifying Dependencies

7 years agoAuto merge of #4355 - pornel:docs, r=alexcrichton
bors [Fri, 4 Aug 2017 09:28:33 +0000 (09:28 +0000)]
Auto merge of #4355 - pornel:docs, r=alexcrichton

Expand profile settings descriptions

Flags were described in the format `foobar = true # controls foobar, passes '--foobar' flag`, but this doesn't actually say what `foobar` does. I've expanded the descriptions a little to provide more context.

7 years agoAuto merge of #4360 - sid0:members, r=matklad
bors [Fri, 4 Aug 2017 08:21:55 +0000 (08:21 +0000)]
Auto merge of #4360 - sid0:members, r=matklad

workspace: export Members as part of the public interface

This struct is returned by `Workspace::members`, but there's no way to
refer to it since it's not exported.

7 years agoworkspace: export Members as part of the public interface
Siddharth Agarwal [Fri, 4 Aug 2017 05:33:27 +0000 (22:33 -0700)]
workspace: export Members as part of the public interface

This struct is returned by `Workspace::members`, but there's no way to
refer to it since it's not exported.

7 years agoAuto merge of #4359 - sid0:debug, r=alexcrichton
bors [Fri, 4 Aug 2017 03:52:35 +0000 (03:52 +0000)]
Auto merge of #4359 - sid0:debug, r=alexcrichton

derive Debug for more data structures

This makes it easier for wrappers around Cargo to inspect the contents
of these data structures.

7 years agoderive Debug for more data structures
Siddharth Agarwal [Fri, 4 Aug 2017 01:45:59 +0000 (18:45 -0700)]
derive Debug for more data structures

This makes it easier for wrappers around Cargo to inspect the contents
of these data structures.

7 years agoAuto merge of #4237 - vignesh-sankaran:blacklist-url-doc, r=carols10cents
bors [Thu, 3 Aug 2017 15:01:06 +0000 (15:01 +0000)]
Auto merge of #4237 - vignesh-sankaran:blacklist-url-doc, r=carols10cents

Added documentation blacklisting notes

Added notes regarding [documentation domain blacklisting](https://github.com/rust-lang/crates.io/issues/626) on crates.io

7 years agoExpand profile settings descriptions
Kornel [Wed, 2 Aug 2017 17:11:02 +0000 (18:11 +0100)]
Expand profile settings descriptions

7 years agoAuto merge of #4345 - froydnj:use-noop-more, r=alexcrichton
bors [Mon, 31 Jul 2017 21:31:02 +0000 (21:31 +0000)]
Auto merge of #4345 - froydnj:use-noop-more, r=alexcrichton

use Work::noop() more

Using Work::noop() in these places is clearer.

7 years agoAuto merge of #4344 - froydnj:cargo-rustc-spelling-fixes, r=alexcrichton
bors [Mon, 31 Jul 2017 20:31:58 +0000 (20:31 +0000)]
Auto merge of #4344 - froydnj:cargo-rustc-spelling-fixes, r=alexcrichton

fix some spelling errors in cargo_rustc

7 years agouse Work::noop() more
Nathan Froyd [Mon, 31 Jul 2017 19:59:14 +0000 (15:59 -0400)]
use Work::noop() more

Using Work::noop() in these places is clearer.

7 years agoAuto merge of #4342 - sid0:hgignore, r=alexcrichton
bors [Mon, 31 Jul 2017 19:42:41 +0000 (19:42 +0000)]
Auto merge of #4342 - sid0:hgignore, r=alexcrichton

new: fix hgignore for real

There was an attempt to fix hgignore in #4158, but unfortunately the fix
was incorrect -- hgignore glob syntax is not in fact identical to
gitignore syntax.

To get rooted ignores in Mercurial we must use the regex-based syntax,
so we have no choice but to define a separate set of ignores.

7 years agofix some spelling errors in cargo_rustc
Nathan Froyd [Mon, 31 Jul 2017 19:26:44 +0000 (15:26 -0400)]
fix some spelling errors in cargo_rustc

7 years agoAuto merge of #4343 - sid0:debug, r=alexcrichton
bors [Mon, 31 Jul 2017 19:13:35 +0000 (19:13 +0000)]
Auto merge of #4343 - sid0:debug, r=alexcrichton

derive/impl Debug for a few data structures

I found this to be extremely useful while trying to write a wrapper on
top of cargo.

7 years agoderive/impl Debug for a few data structures
Siddharth Agarwal [Mon, 31 Jul 2017 16:38:43 +0000 (09:38 -0700)]
derive/impl Debug for a few data structures

I found this to be extremely useful while trying to write a wrapper on
top of cargo.

7 years agonew: fix hgignore for real
Siddharth Agarwal [Mon, 31 Jul 2017 01:15:24 +0000 (18:15 -0700)]
new: fix hgignore for real

There was an attempt to fix hgignore in #4158, but unfortunately the fix
was incorrect -- hgignore glob syntax is not in fact identical to
gitignore syntax.

To get rooted ignores in Mercurial we must use the regex-based syntax,
so we have no choice but to define a separate set of ignores.

7 years agoAuto merge of #4340 - debris:fixed_4310, r=alexcrichton
bors [Sun, 30 Jul 2017 17:51:50 +0000 (17:51 +0000)]
Auto merge of #4340 - debris:fixed_4310, r=alexcrichton

Fixed #4310, print useful message when dependency contains a malformed Cargo.toml

fixed #4310

7 years agoRemoved redundant unwrap
debris [Sun, 30 Jul 2017 14:15:35 +0000 (16:15 +0200)]
Removed redundant unwrap

7 years agofixed #4310, print useful information when git Cargo.toml is malformed
debris [Sun, 30 Jul 2017 14:12:18 +0000 (16:12 +0200)]
fixed #4310, print useful information when git Cargo.toml is malformed

7 years agoAuto merge of #4338 - GuillaumeGomez:lint, r=alexcrichton
bors [Fri, 28 Jul 2017 22:40:15 +0000 (22:40 +0000)]
Auto merge of #4338 - GuillaumeGomez:lint, r=alexcrichton

Update to rc error chain

In order to make https://github.com/rust-lang/rust/pull/43009 works, I needed some small updates that are now in error-chain.

7 years agoUpdate error-chain dep for crates-io as well
Guillaume Gomez [Fri, 28 Jul 2017 19:37:08 +0000 (21:37 +0200)]
Update error-chain dep for crates-io as well

7 years agoUpdate to rc error chain
Guillaume Gomez [Fri, 28 Jul 2017 19:12:05 +0000 (21:12 +0200)]
Update to rc error chain

7 years agoAuto merge of #4216 - durka:install-multi, r=alexcrichton
bors [Fri, 28 Jul 2017 16:07:08 +0000 (16:07 +0000)]
Auto merge of #4216 - durka:install-multi, r=alexcrichton

cargo install multiple crates

rust-lang-nursery/rustup.rs#986 for `cargo install`

Revives #2601 @pwoolcoc, replaces #3075 @esclear, closes #2585 @kindlychung @cyplo

Avoids the sticking point of the previous two PRs (multiple registry updates) by threading through a first-run boolean flag to decide whether `select_pkg` needs to call `source.update()`.

There is still the issue that flags such as `--git` and `--vers` are "global" to the multiple packages you may be installing. The workaround is just to run `cargo install` separately. In the future we could add syntax like `cargo install foo=1.0 bar=2.5 quux=git://github.com/durka/quux#dev-branch` or something.

7 years agoAuto merge of #4335 - debris:rebased_4021, r=matklad
bors [Fri, 28 Jul 2017 11:55:38 +0000 (11:55 +0000)]
Auto merge of #4335 - debris:rebased_4021, r=matklad

Rebased and fixed 4025: Apply --all if workspace is virtual

- fixes #4021
- rebased #4025
- fixed issue issue described by @matklad in https://github.com/rust-lang/cargo/pull/4025#pullrequestreview-40660570
- added test `build_virtual_manifest_one_project` which covers the fix

7 years agoUpdated build_virtual_manifest_one_project test
debris [Fri, 28 Jul 2017 11:51:16 +0000 (13:51 +0200)]
Updated build_virtual_manifest_one_project test

7 years agoFixed test_virtual_manifest_all_implied test
debris [Fri, 28 Jul 2017 09:19:54 +0000 (11:19 +0200)]
Fixed test_virtual_manifest_all_implied test