io_safety is now stable in Rust 1.63! This PR updates io-lifetimes to
use the standard library types and traits when available, and use its
own types and traits on older Rust versions.
The traits FromFd and IntoFd are now marked as deprecated. These are
replaced by From<OwnedFd> and From<...> for OwnedFd in the standard
library, and users should migrate accordingly.
io_safety is now stable in Rust 1.63! This PR updates io-lifetimes to use the standard library types and traits when available, and use its own types and traits on older Rust versions.
The traits
FromFd
andIntoFd
are now marked as deprecated. These are replaced byFrom<OwnedFd>
andFrom<...> for OwnedFd
in the standard library, and users should migrate accordingly.