@@ -43,6 +43,7 @@ Please use that command to update the file and do not edit it by hand.
4343| [ allowed-scripts] ( #allowed-scripts ) | ` ["Latin"] ` |
4444| [ enable-raw-pointer-heuristic-for-send] ( #enable-raw-pointer-heuristic-for-send ) | ` true ` |
4545| [ max-suggested-slice-pattern-length] ( #max-suggested-slice-pattern-length ) | ` 3 ` |
46+ | [ await-holding-invalid-types] ( #await-holding-invalid-types ) | ` [] ` |
4647| [ max-include-file-size] ( #max-include-file-size ) | ` 1000000 ` |
4748| [ allow-expect-in-tests] ( #allow-expect-in-tests ) | ` false ` |
4849| [ allow-unwrap-in-tests] ( #allow-unwrap-in-tests ) | ` false ` |
@@ -167,6 +168,17 @@ The minimum rust version that the project supports
167168* [ manual_clamp] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_clamp )
168169* [ manual_let_else] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else )
169170* [ unchecked_duration_subtraction] ( https://rust-lang.github.io/rust-clippy/master/index.html#unchecked_duration_subtraction )
171+ * [ collapsible_str_replace] ( https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_str_replace )
172+ * [ seek_from_current] ( https://rust-lang.github.io/rust-clippy/master/index.html#seek_from_current )
173+ * [ seek_rewind] ( https://rust-lang.github.io/rust-clippy/master/index.html#seek_rewind )
174+ * [ unnecessary_lazy_evaluations] ( https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_lazy_evaluations )
175+ * [ transmute_ptr_to_ref] ( https://rust-lang.github.io/rust-clippy/master/index.html#transmute_ptr_to_ref )
176+ * [ almost_complete_range] ( https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_range )
177+ * [ needless_borrow] ( https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow )
178+ * [ derivable_impls] ( https://rust-lang.github.io/rust-clippy/master/index.html#derivable_impls )
179+ * [ manual_is_ascii_check] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_is_ascii_check )
180+ * [ manual_rem_euclid] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_rem_euclid )
181+ * [ manual_retain] ( https://rust-lang.github.io/rust-clippy/master/index.html#manual_retain )
170182
171183
172184### cognitive-complexity-threshold
@@ -279,7 +291,7 @@ The minimum size (in bytes) to consider a type for passing by reference instead
279291
280292** Default Value:** ` 256 ` (` u64 ` )
281293
282- * [ large_type_pass_by_move ] ( https://rust-lang.github.io/rust-clippy/master/index.html#large_type_pass_by_move )
294+ * [ large_types_passed_by_value ] ( https://rust-lang.github.io/rust-clippy/master/index.html#large_types_passed_by_value )
283295
284296
285297### too-many-lines-threshold
@@ -442,6 +454,14 @@ For example, `[_, _, _, e, ..]` is a slice pattern with 4 elements.
442454* [ index_refutable_slice] ( https://rust-lang.github.io/rust-clippy/master/index.html#index_refutable_slice )
443455
444456
457+ ### await-holding-invalid-types
458+
459+
460+ ** Default Value:** ` [] ` (` Vec<crate::utils::conf::DisallowedPath> ` )
461+
462+ * [ await_holding_invalid_type] ( https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_invalid_type )
463+
464+
445465### max-include-file-size
446466The maximum size of a file included via ` include_bytes!() ` or ` include_str!() ` , in bytes
447467
@@ -497,7 +517,7 @@ for the generic parameters for determining interior mutability
497517
498518** Default Value:** ` ["bytes::Bytes"] ` (` Vec<String> ` )
499519
500- * [ mutable_key ] ( https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key )
520+ * [ mutable_key_type ] ( https://rust-lang.github.io/rust-clippy/master/index.html#mutable_key_type )
501521
502522
503523### allow-mixed-uninlined-format-args
@@ -509,7 +529,7 @@ Whether to allow mixed uninlined format args, e.g. `format!("{} {}", a, foo.bar)
509529
510530
511531### suppress-restriction-lint-in-const
512- In same
532+ Whether to suppress a restriction lint in constant code. In same
513533cases the restructured operation might not be unavoidable, as the
514534suggested counterparts are unavailable in constant code. This
515535configuration will cause restriction lints to trigger even
0 commit comments