Skip to content

Commit 5f89e65

Browse files
authored
Use clippy::msrv instead
1 parent 0e6830c commit 5f89e65

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/unix.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ extern "C" {
102102
#[cfg_attr(target_os = "nto", link_name = "__get_errno_ptr")]
103103

104104
// Newer libc versions re-export `c_int` from `std` which is incompatible
105-
// with Rust < 1.65. However, this is not actually a problem as users can
105+
// with Rust < 1.64. However, this is not actually a problem as users can
106106
// use an older `libc`.
107107
// See: https://github.com/rust-lang/libc/pull/5015
108-
#[allow(clippy::incompatible_msrv)]
108+
#[clippy::msrv = "1.64"]
109109

110110
fn errno_location() -> *mut c_int;
111111
}

0 commit comments

Comments
 (0)