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
When writing miri tests, it's common to have certain bits of code annotated with #[cfg(miri)].
If these attributes were using cargo features (like #[cfg(feature = "miri")]), I could get RA to turn this feature on with the cargo.features config parameter. However, I'm not sure what the equivalent config key is for plain --cfg features.
Apologies if this has been asked before, I had a look through old issues but could only find questions relating to #[cfg(feature = "...")]. Thanks 😁
The text was updated successfully, but these errors were encountered:
When writing miri tests, it's common to have certain bits of code annotated with
#[cfg(miri)]
.If these attributes were using cargo features (like
#[cfg(feature = "miri")]
), I could get RA to turn this feature on with thecargo.features
config parameter. However, I'm not sure what the equivalent config key is for plain--cfg
features.Apologies if this has been asked before, I had a look through old issues but could only find questions relating to
#[cfg(feature = "...")]
. Thanks 😁The text was updated successfully, but these errors were encountered: