You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many project require specific crate features to be enabled/disabled during CI build. Among other things, this is important for the imxrt-ral crate, as it doesn't even compile without having a board specific feature enabled.
It would therefore be super helpful/crucial for embedded(and probably even std) crates to allow specifying which crate features should be enabled.
It is important that not only --features works, but also --all-features and --no-default-features.
Implementation could be a simple pass-through to the cargo check command, which supports all of those options.
The text was updated successfully, but these errors were encountered:
Many project require specific crate features to be enabled/disabled during CI build. Among other things, this is important for the
imxrt-ral
crate, as it doesn't even compile without having a board specific feature enabled.It would therefore be super helpful/crucial for embedded(and probably even std) crates to allow specifying which crate features should be enabled.
It is important that not only
--features
works, but also--all-features
and--no-default-features
.Implementation could be a simple pass-through to the
cargo check
command, which supports all of those options.The text was updated successfully, but these errors were encountered: