This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -6066,6 +6066,7 @@ Released 2018-09-13
6066
6066
[ `size_of_in_element_count` ] : https://rust-lang.github.io/rust-clippy/master/index.html#size_of_in_element_count
6067
6067
[ `size_of_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#size_of_ref
6068
6068
[ `skip_while_next` ] : https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
6069
+ [ `slice_as_bytes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#slice_as_bytes
6069
6070
[ `slow_vector_initialization` ] : https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
6070
6071
[ `stable_sort_primitive` ] : https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
6071
6072
[ `std_instead_of_alloc` ] : https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_alloc
Original file line number Diff line number Diff line change @@ -468,6 +468,7 @@ pub static LINTS: &[&crate::LintInfo] = &[
468
468
crate :: methods:: SHOULD_IMPLEMENT_TRAIT_INFO ,
469
469
crate :: methods:: SINGLE_CHAR_ADD_STR_INFO ,
470
470
crate :: methods:: SKIP_WHILE_NEXT_INFO ,
471
+ crate :: methods:: SLICE_AS_BYTES_INFO ,
471
472
crate :: methods:: STABLE_SORT_PRIMITIVE_INFO ,
472
473
crate :: methods:: STRING_EXTEND_CHARS_INFO ,
473
474
crate :: methods:: STRING_LIT_CHARS_ANY_INFO ,
@@ -503,7 +504,6 @@ pub static LINTS: &[&crate::LintInfo] = &[
503
504
crate :: methods:: WAKER_CLONE_WAKE_INFO ,
504
505
crate :: methods:: WRONG_SELF_CONVENTION_INFO ,
505
506
crate :: methods:: ZST_OFFSET_INFO ,
506
- crate :: methods:: SLICE_AS_BYTES_INFO ,
507
507
crate :: min_ident_chars:: MIN_IDENT_CHARS_INFO ,
508
508
crate :: minmax:: MIN_MAX_INFO ,
509
509
crate :: misc:: SHORT_CIRCUIT_STATEMENT_INFO ,
You can’t perform that action at this time.
0 commit comments