Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(lints): Switch to -Zlints so stable projects can experiment #12168

Merged
merged 2 commits into from
May 23, 2023

Commits on May 22, 2023

  1. Configuration menu
    Copy the full SHA
    2c48b10 View commit details
    Browse the repository at this point in the history
  2. fix(lints): Switch to -Zlints so stable projects can experiment

    In rust-lang#12115, we explored how we can let stable projects
    experiment with `[lints]` to provide feedback.  What we settled on is
    switching from the `cargo-features` manifest key to the `-Z` flag as
    `cargo-features` always requires nightly while `-Z` only requires it
    when being passed in.  This means a project can have a `[lints]` table
    and have CI / contributors run `cargo +nightly check -Zlints` when they
    care about warnings.
    epage committed May 22, 2023
    Configuration menu
    Copy the full SHA
    08fdd86 View commit details
    Browse the repository at this point in the history