mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00

The error message for unknown values of `cargo-features` was unhelpful: ```text Caused by: unknown cargo feature `build-dir` ``` I've made it more explanatory, and matching the style of the other errors: ```text Caused by: feature `build-dir` is not a valid unstable feature for Cargo.toml This feature can be enabled via -Zbuild-dir or the `[unstable]` section in config.toml. See https://doc.rust-lang.org/cargo/reference/unstable.html for more information. ```