extattr 1.0.0

Extended Attributes API bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(any(target_os = "freebsd", target_os = "netbsd"))]
pub mod freebsd;

// #[cfg(any(target_os = "linux", target_os = "android", target_os = "netbsd"))]
#[cfg(any(target_os = "linux", target_os = "android"))]
pub mod linux_and_android;

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

#[cfg(target_os = "netbsd")]
pub mod netbsd;