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
Separate benchmarks into benches/bench.rs or similar benchmark could be done without the need to specify --features bench
benches/bench.rs
--features bench
$ cargo +nightly bench
Does not break the stable compiler if they don't invoke bench. As well, all the #[cfg(feature = "bench")] could be dropped.
#[cfg(feature = "bench")]
Example https://github.com/dtolnay/miniserde
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Separate benchmarks into
benches/bench.rs
or similar benchmark could be done without the need to specify--features bench
Does not break the stable compiler if they don't invoke bench. As well, all the
#[cfg(feature = "bench")]
could be dropped.Example https://github.com/dtolnay/miniserde
The text was updated successfully, but these errors were encountered: