We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clippy::msrv
1 parent 0e6830c commit 5f89e65Copy full SHA for 5f89e65
1 file changed
src/unix.rs
@@ -102,10 +102,10 @@ extern "C" {
102
#[cfg_attr(target_os = "nto", link_name = "__get_errno_ptr")]
103
104
// 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
+ // with Rust < 1.64. However, this is not actually a problem as users can
106
// use an older `libc`.
107
// See: https://github.com/rust-lang/libc/pull/5015
108
- #[allow(clippy::incompatible_msrv)]
+ #[clippy::msrv = "1.64"]
109
110
fn errno_location() -> *mut c_int;
111
}
0 commit comments