Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: keep bench and release profile in sync to avoid surprises (#…
…4679) Cargo's smaller profiles, like `test` and `bench`, work in a rather curious fashion. When you run `cargo test`, `cargo test --release` or `cargo bench`, the tset/bench profiles apply only to a subset of code being compiled. Most things are compiled with dev/release profile instead. To avoid surprises where things compile differently, it's advisable to keep bench in sync with release. cc #4507
- Loading branch information