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
cfg
jack
I was greeted with following:
error: unexpected `cfg` condition value: `jack` --> src/main.rs:54:9 | 54 | feature = "jack" | ^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `default` = help: consider adding `jack` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration = note: `-D unexpected-cfgs` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unexpected_cfgs)]
The text was updated successfully, but these errors were encountered:
Adding the following in Cargo.toml solved
[features] default = [] jack = [] # add this
Sorry, something went wrong.
No branches or pull requests
I was greeted with following:
The text was updated successfully, but these errors were encountered: