cargo icon indicating copy to clipboard operation
cargo copied to clipboard

stable/unstable/nightly-only features

Open ehuss opened this issue 1 year ago • 0 comments

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 features that enable nightly-only functionality (see nightly-only features). I'm not sure if these two are distinct enough to consider separately, though they seem pretty similar to me.

Currently the documentation just recommends clearly documenting which features are unstable. However, that does not provide very good assurances that users know what they are opting into.

I don't know what would be a good way to make it clear that one is opting into an unstable feature. Another consideration is to possibly deny the use of unstable features.

Possible syntax may look like:

[features.foobar]
unstable = true

One thing to consider is the possible confusion of the term "unstable features" with Cargo's own Unstable Features. I'm not sure what terminology would be best here.

I'm opening this issue to track this feature request, but this isn't something we will likely pursue in the near term. This will require an RFC to explore the design in more detail.

See also:

  • private/hidden features: #10882
  • deprecated features: #7130
  • feature descriptions: #4956

ehuss avatar Jul 19 '22 21:07 ehuss