File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ declare_clippy_lint! {
35
35
/// let y: i32 = 4;
36
36
/// let div = x.div_ceil(y);
37
37
/// ```
38
- #[ clippy:: version = "1.81 .0" ]
38
+ #[ clippy:: version = "1.83 .0" ]
39
39
pub MANUAL_DIV_CEIL ,
40
40
complexity,
41
41
"manually reimplementing `div_ceil`"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ declare_clippy_lint! {
27
27
/// let a: u32 = 4;
28
28
/// let result = a.is_power_of_two();
29
29
/// ```
30
- #[ clippy:: version = "1.82 .0" ]
30
+ #[ clippy:: version = "1.83 .0" ]
31
31
pub MANUAL_IS_POWER_OF_TWO ,
32
32
pedantic,
33
33
"manually reimplementing `is_power_of_two`"
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ declare_clippy_lint! {
114
114
/// let _ = FooStruct{};
115
115
/// }
116
116
/// ```
117
- #[ clippy:: version = "pre 1.29 .0" ]
117
+ #[ clippy:: version = "1.83 .0" ]
118
118
pub USED_UNDERSCORE_ITEMS ,
119
119
pedantic,
120
120
"using a item which is prefixed with an underscore"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ declare_clippy_lint! {
39
39
/// let r2 = x % NonZeroU64::from(y);
40
40
/// }
41
41
/// ```
42
- #[ clippy:: version = "1.81 .0" ]
42
+ #[ clippy:: version = "1.83 .0" ]
43
43
pub NON_ZERO_SUGGESTIONS ,
44
44
restriction,
45
45
"suggests using `NonZero#` from `u#` or `i#` for more efficient and type-safe conversions"
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ declare_clippy_lint! {
35
35
/// let mut child = Command::new("ls").spawn().expect("failed to execute child");
36
36
/// child.wait().expect("failed to wait on child");
37
37
/// ```
38
- #[ clippy:: version = "1.74 .0" ]
38
+ #[ clippy:: version = "1.83 .0" ]
39
39
pub ZOMBIE_PROCESSES ,
40
40
suspicious,
41
41
"not waiting on a spawned child process"
You can’t perform that action at this time.
0 commit comments