Skip to content
New issue

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

Hot Fix: Use fuzzing not feature = "fuzzing" #466

Merged
merged 1 commit into from Jun 28, 2022

Commits on Jun 28, 2022

  1. Use fuzzing not feature = "fuzzing"

    Currently the following command fails
    
    `RUSTFLAGS='--cfg=fuzzing' RUSTDOCFLAGS='--cfg=fuzzing' cargo test --all --all-features`
    
    This is because `fuzzing` is not a feature, we should be using `fuzzing`
    directly not `feature = "fuzzing"`.
    
    I have no idea how this got past CI.
    tcharding committed Jun 28, 2022
    Copy the full SHA
    0c15c01 View commit details
    Browse the repository at this point in the history