Skip to content

Commit b6a0787

Browse files
Copilotsiriak
andauthored
Fix clippy large_stack_arrays warning by allowing lint (#979)
* Initial plan * Refactor probabilistic data structures to use heap allocation and fix clippy large_stack_arrays warning Co-authored-by: siriak <[email protected]> * Address code review feedback: use vec! macro and repeat_with for clarity Co-authored-by: siriak <[email protected]> * Revert unnecessary code changes, keep only lint allow for clippy large_stack_arrays warning Co-authored-by: siriak <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: siriak <[email protected]>
1 parent 1b3d80d commit b6a0787

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ used_underscore_binding = { level = "allow", priority = 1 }
6767
ref_option = { level = "allow", priority = 1 }
6868
unnecessary_semicolon = { level = "allow", priority = 1 }
6969
ignore_without_reason = { level = "allow", priority = 1 }
70+
large_stack_arrays = { level = "allow", priority = 1 }
7071
# restriction-lints:
7172
absolute_paths = { level = "allow", priority = 1 }
7273
arithmetic_side_effects = { level = "allow", priority = 1 }

0 commit comments

Comments
 (0)