8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
If I run cargo cbuild I get:
cargo cbuild
warning: unexpected `cfg` condition name: `test` --> src/group_record.rs:236:7 | 236 | #[cfg(test)] | ^^^^ |
How can I get rid of that warning with cbuild? I have a library and unit tests are implemented in the rust files itself.
The text was updated successfully, but these errors were encountered:
A current workaround seems to be adding the following to Cargo.toml:
[lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] }
Sorry, something went wrong.
No branches or pull requests
If I run
cargo cbuild
I get:How can I get rid of that warning with cbuild? I have a library and unit tests are implemented in the rust files itself.
The text was updated successfully, but these errors were encountered: