Skip to content

Commit cebf2ac

Browse files
committed
Use std::os::unix::io::OwnedFd in stdio
instead of `io_lifetimes::OwnedFd` Signed-off-by: Jiahao XU <[email protected]>
1 parent beb4277 commit cebf2ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdio.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ use super::Error;
33
#[cfg(feature = "native-mux")]
44
use super::native_mux_impl;
55

6-
use io_lifetimes::OwnedFd;
76
use std::fs::File;
87
use std::io;
8+
use std::os::unix::io::OwnedFd;
99
use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
1010
use std::pin::Pin;
1111
use std::process;

0 commit comments

Comments
 (0)