File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ declare_clippy_lint! {
251
251
/// unimplemented!();
252
252
/// }
253
253
/// ```
254
- #[ clippy:: version = "1.66 .0" ]
254
+ #[ clippy:: version = "1.67 .0" ]
255
255
pub UNNECESSARY_SAFETY_DOC ,
256
256
restriction,
257
257
"`pub fn` or `pub trait` with `# Safety` docs"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ declare_clippy_lint! {
31
31
/// let _ = unsafe { Box::from_raw(ptr as *mut usize) };
32
32
/// ```
33
33
///
34
- #[ clippy:: version = "1.66 .0" ]
34
+ #[ clippy:: version = "1.67 .0" ]
35
35
pub FROM_RAW_WITH_VOID_PTR ,
36
36
suspicious,
37
37
"creating a `Box` from a void raw pointer"
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ declare_clippy_lint! {
59
59
///
60
60
/// [`Duration`]: std::time::Duration
61
61
/// [`Instant::now()`]: std::time::Instant::now;
62
- #[ clippy:: version = "1.65 .0" ]
62
+ #[ clippy:: version = "1.67 .0" ]
63
63
pub UNCHECKED_DURATION_SUBTRACTION ,
64
64
pedantic,
65
65
"finds unchecked subtraction of a 'Duration' from an 'Instant'"
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ declare_clippy_lint! {
84
84
/// let _ = foo().await;
85
85
/// # }
86
86
/// ```
87
- #[ clippy:: version = "1.66 " ]
87
+ #[ clippy:: version = "1.67.0 " ]
88
88
pub LET_UNDERSCORE_FUTURE ,
89
89
suspicious,
90
90
"non-binding `let` on a future"
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ declare_clippy_lint! {
43
43
/// 'A'.is_ascii_uppercase();
44
44
/// }
45
45
/// ```
46
- #[ clippy:: version = "1.66 .0" ]
46
+ #[ clippy:: version = "1.67 .0" ]
47
47
pub MANUAL_IS_ASCII_CHECK ,
48
48
style,
49
49
"use dedicated method to check ascii range"
Original file line number Diff line number Diff line change @@ -3102,7 +3102,7 @@ declare_clippy_lint! {
3102
3102
/// Ok(())
3103
3103
/// }
3104
3104
/// ```
3105
- #[ clippy:: version = "1.66 .0" ]
3105
+ #[ clippy:: version = "1.67 .0" ]
3106
3106
pub SEEK_FROM_CURRENT ,
3107
3107
complexity,
3108
3108
"use dedicated method for seek from current position"
@@ -3133,7 +3133,7 @@ declare_clippy_lint! {
3133
3133
/// t.rewind();
3134
3134
/// }
3135
3135
/// ```
3136
- #[ clippy:: version = "1.66 .0" ]
3136
+ #[ clippy:: version = "1.67 .0" ]
3137
3137
pub SEEK_TO_START_INSTEAD_OF_REWIND ,
3138
3138
complexity,
3139
3139
"jumping to the start of stream using `seek` method"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ declare_clippy_lint! {
18
18
/// ```rust
19
19
/// let x = 3_i32.pow(4);
20
20
/// ```
21
- #[ clippy:: version = "1.66 .0" ]
21
+ #[ clippy:: version = "1.67 .0" ]
22
22
pub SUSPICIOUS_XOR_USED_AS_POW ,
23
23
restriction,
24
24
"XOR (`^`) operator possibly used as exponentiation operator"
You can’t perform that action at this time.
0 commit comments