Eric Huss

Results 149 issues of Eric Huss

This extends the `#[cargo_test]` attribute to support some additional requirements to control whether or not a test can run. The motivation for this is: * Can more clearly see when...

S-waiting-on-review

It would be very helpful to set the resolver version in a virtual workspace based on the `edition` field being added in RFC 2906. This has been requested several times...

Z-workspace-inheritance

### Summary RFC: [#3289](https://github.com/rust-lang/rfcs/pull/3289) Implementation: https://github.com/rust-lang/cargo/pull/10907 Documentation: TODO This RFC is to resolve the interaction of source-replacement and registry API operations like publishing. ### Unresolved Issues * [ ] Should...

A-registries
A-source-replacement
C-tracking-issue

This is a dump of some elements that I considered adding to the [SemVer compatibility chapter](https://github.com/rust-lang/cargo/blob/master/src/doc/src/reference/semver.md), but didn't have time or knowledge to finish. - [ ] Major: Moving existing...

A-new-subcommand
A-documenting-cargo-itself
A-semver

**Summary** RFC: [#2789](https://github.com/rust-lang/rfcs/pull/2789) Implementation: #10470 Documentation: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#sparse-registry Issues: https://github.com/rust-lang/cargo/labels/Z-sparse-registry This is a tracking issue for RFC [#2789](https://github.com/rust-lang/rfcs/pull/2789), an experimental extension to serve the index over HTTP instead of via git....

C-tracking-issue
Z-sparse-registry

This is an implementation of [RFC 3279](https://github.com/rust-lang/rfcs/pull/3279). This only uses the `CARGO_UNSTABLE_SAFE_DIRECTORIES=true` environment variable instead of a `-Z` flag because `-Z` flags are loaded *after* the config files have been...

S-waiting-on-review

Some packages have features that they intend to be "unstable" in that they enable functionality that may change over time, or may even be removed. Closely related to this are...

A-features
C-feature-request

It can sometimes be useful to have a feature that you do not want users to use. docs.rs has a convention that features prefixed with an underscore are not displayed...

A-features
C-feature-request

Original issue: #4875 Implementation PR: #5203 Documentation: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#out-dir Issues: https://github.com/rust-lang/cargo/labels/Z-out-dir **Summary** Adds `--out-dir=PATH` flag to `cargo build` to specify a directory to place final artifacts. **Unresolved questions** - [ ]...

C-tracking-issue
Z-out-dir
S-needs-team-input
S-waiting-on-feedback

### Problem Running `cargo doc` twice with `-Zrustdoc-scrape-examples`, the second run should not do anything. However, it is running rustdoc again to scrape the examples. ### Steps Changing the `scrape_examples_basic`...

C-bug
Z-scrape-examples