@@ -49,7 +49,6 @@ pub const REGEX_NEW: [&str; 3] = ["regex", "Regex", "new"];
49
49
pub const REGEX_SET_NEW : [ & str ; 3 ] = [ "regex" , "RegexSet" , "new" ] ;
50
50
pub const SERDE_DESERIALIZE : [ & str ; 3 ] = [ "serde" , "de" , "Deserialize" ] ;
51
51
pub const SERDE_DE_VISITOR : [ & str ; 3 ] = [ "serde" , "de" , "Visitor" ] ;
52
- pub const SLICE_INTO_VEC : [ & str ; 4 ] = [ "alloc" , "slice" , "<impl [T]>" , "into_vec" ] ;
53
52
pub const STD_IO_SEEK_FROM_CURRENT : [ & str ; 4 ] = [ "std" , "io" , "SeekFrom" , "Current" ] ;
54
53
pub const STD_IO_SEEKFROM_START : [ & str ; 4 ] = [ "std" , "io" , "SeekFrom" , "Start" ] ;
55
54
pub const STRING_NEW : [ & str ; 4 ] = [ "alloc" , "string" , "String" , "new" ] ;
@@ -73,8 +72,6 @@ pub const TOKIO_IO_ASYNCWRITEEXT: [&str; 5] = ["tokio", "io", "util", "async_wri
73
72
pub const TOKIO_IO_OPEN_OPTIONS : [ & str ; 4 ] = [ "tokio" , "fs" , "open_options" , "OpenOptions" ] ;
74
73
#[ expect( clippy:: invalid_paths) ] // internal lints do not know about all external crates
75
74
pub const TOKIO_IO_OPEN_OPTIONS_NEW : [ & str ; 5 ] = [ "tokio" , "fs" , "open_options" , "OpenOptions" , "new" ] ;
76
- pub const VEC_FROM_ELEM : [ & str ; 3 ] = [ "alloc" , "vec" , "from_elem" ] ;
77
- pub const VEC_NEW : [ & str ; 4 ] = [ "alloc" , "vec" , "Vec" , "new" ] ;
78
75
pub const VEC_WITH_CAPACITY : [ & str ; 4 ] = [ "alloc" , "vec" , "Vec" , "with_capacity" ] ;
79
76
pub const INSTANT_NOW : [ & str ; 4 ] = [ "std" , "time" , "Instant" , "now" ] ;
80
77
pub const VEC_IS_EMPTY : [ & str ; 4 ] = [ "alloc" , "vec" , "Vec" , "is_empty" ] ;
0 commit comments