We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66bca61 commit 7594b56Copy full SHA for 7594b56
Cargo.toml
@@ -10,7 +10,7 @@ description = """
10
An implementation of the GNU make jobserver for Rust
11
"""
12
edition = "2021"
13
-rust-version = "1.66"
+rust-version = "1.60"
14
15
[target.'cfg(unix)'.dependencies]
16
libc = "0.2.50"
src/error.rs
@@ -1,5 +1,5 @@
1
#[cfg(unix)]
2
-type RawFd = std::os::fd::RawFd;
+type RawFd = std::os::unix::io::RawFd;
3
#[cfg(not(unix))]
4
type RawFd = std::convert::Infallible;
5
0 commit comments