Simplify hashing in shuffling (#6483)

* Simplify hashing in shuffling

* Fix benchmark deps

* Check benchmarks when linting
This commit is contained in:
Michael Sproul
2024-10-15 07:31:10 +11:00
committed by GitHub
parent 17711b720e
commit 2e440df4f1
7 changed files with 7 additions and 8 deletions

View File

@@ -204,7 +204,7 @@ test-full: cargo-fmt test-release test-debug test-ef test-exec-engine
# Lints the code for bad style and potentially unsafe arithmetic using Clippy.
# Clippy lints are opt-in per-crate for now. By default, everything is allowed except for performance and correctness lints.
lint:
cargo clippy --workspace --tests $(EXTRA_CLIPPY_OPTS) --features "$(TEST_FEATURES)" -- \
cargo clippy --workspace --benches --tests $(EXTRA_CLIPPY_OPTS) --features "$(TEST_FEATURES)" -- \
-D clippy::fn_to_numeric_cast_any \
-D clippy::manual_let_else \
-D clippy::large_stack_frames \