Skip to content

Commit 7594b56

Browse files
hoxxeppetrochenkov
authored andcommitted
Reduce MSRV to 1.60 with minor change in RawFd type
1 parent 66bca61 commit 7594b56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = """
1010
An implementation of the GNU make jobserver for Rust
1111
"""
1212
edition = "2021"
13-
rust-version = "1.66"
13+
rust-version = "1.60"
1414

1515
[target.'cfg(unix)'.dependencies]
1616
libc = "0.2.50"

src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#[cfg(unix)]
2-
type RawFd = std::os::fd::RawFd;
2+
type RawFd = std::os::unix::io::RawFd;
33
#[cfg(not(unix))]
44
type RawFd = std::convert::Infallible;
55

0 commit comments

Comments
 (0)