Skip to content

Commit 0f22e55

Browse files
committed
ci: Fix broken tests
- Update FreeBSD version in Cirrus CI - Silence clippy Signed-off-by: John Nunley <dev@notgull.net>
1 parent 576b470 commit 0f22e55

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
freebsd_task:
1515
name: test ($TARGET)
1616
freebsd_instance:
17-
image_family: freebsd-13-4
17+
image_family: freebsd-14-3
1818
matrix:
1919
- env:
2020
TARGET: x86_64-unknown-freebsd

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,8 +1255,10 @@ unsafe impl IoSafe for std::os::unix::net::UnixStream {}
12551255
// PipeReader & PipeWriter require std >= 1.87, our MSRV is 1.71, hence
12561256
// conditional on cfg()s, generated from build.rs
12571257
#[cfg(not(async_io_no_pipe))]
1258+
#[allow(clippy::incompatible_msrv)]
12581259
unsafe impl IoSafe for std::io::PipeReader {}
12591260
#[cfg(not(async_io_no_pipe))]
1261+
#[allow(clippy::incompatible_msrv)]
12601262
unsafe impl IoSafe for std::io::PipeWriter {}
12611263

12621264
unsafe impl<T: IoSafe + Read> IoSafe for std::io::BufReader<T> {}

0 commit comments

Comments
 (0)