mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 12:17:44 +00:00
| .. | ||
| src | ||
| tests | ||
| .cargo-checksum.json | ||
| Cargo.toml | ||
| LICENSE-APACHE | ||
| LICENSE-MIT | ||
| README.md | ||
xattr
A small library for setting, getting, and listing extended attributes.
Supported Platforms: Linux, MacOS, FreeBSD, and NetBSD.
API Documentation: https://stebalien.github.com/xattr/xattr/
Unsupported Platforms
This library includes no-op support for unsupported platforms. That is, it will build on all platforms but always fail on unsupported platforms.
- You can turn this off by disabling the default
unsupportedfeature. If you do so, this library will fail to compile on unsupported platforms. - Alternatively, you can detect unsupported platforms at runtime by checking
the
xattr::SUPPORTED_PLATFORMboolean.