Sha256: 491d66fd76f46a6f6ac44c7643c8fa8482ac5ec4c638dd0c5c1737621cac276a
Contents?: true
Size: 306 Bytes
Versions: 20
Compression:
Stored size: 306 Bytes
Contents
//! The `rustix` module contains code specific to the Posix-ish platforms //! supported by the `rustix` crate. pub(crate) mod fs; #[cfg(any(target_os = "macos", target_os = "ios"))] mod darwin; #[cfg(target_os = "freebsd")] mod freebsd; #[cfg(any(target_os = "android", target_os = "linux"))] mod linux;
Version data entries
20 entries across 20 versions & 1 rubygems