cap-primitives 0.13.3

Capability-oriented primitives
Documentation
1
2
3
4
5
6
7
8
9
//! The `posish` module contains code specific to the Unix-like platforms
//! supported by the `posish` crate.

pub(crate) mod fs;

#[cfg(any(target_os = "macos", target_os = "ios"))]
mod darwin;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod linux;