We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since updating to Rust 1.80.0, which checks cfgs at compile-time, I've been noticing warnings about unexpected feature flags all over the project:
cfg
ffi_import
iroha_data_model
crate_type
metric-instrumentation
The text was updated successfully, but these errors were encountered:
check-cfg
There are also warnings about #![cfg(not(coverage))] in UI tests.
#![cfg(not(coverage))]
Sorry, something went wrong.
#[cfg(coverage)]
0x009922
Successfully merging a pull request may close this issue.
Since updating to Rust 1.80.0, which checks cfgs at compile-time, I've been noticing warnings about unexpected feature flags all over the project:
cfg
condition value:ffi_import
(feature flag is commented out, might be related to Enableffi_import
foriroha_data_model
#3102)cfg
condition name:crate_type
(seems unsupported: Conditional compilation based on crate_type rust-lang/rust#20267)cfg
condition value:metric-instrumentation
(feature flag missing)The text was updated successfully, but these errors were encountered: