• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Jan-2022-

src/H20-Jan-2022-1,042852

tests/H20-Jan-2022-116101

.cargo-checksum.jsonH A D03-May-202289 11

Cargo.tomlH A D20-Jan-2022962 3027

LICENSE-APACHEH A D20-Jan-202210.6 KiB202169

LICENSE-MITH A D20-Jan-20221 KiB2622

README.mdH A D20-Jan-2022789 2214

README.md

1xattr
2=====
3
4[![Build Status](https://travis-ci.org/Stebalien/xattr.svg?branch=master)](https://travis-ci.org/Stebalien/xattr)
5
6A small library for setting, getting, and listing extended attributes.
7
8Supported Platforms: Linux, MacOS, FreeBSD, and NetBSD.
9
10API Documentation: https://stebalien.github.com/xattr/xattr/
11
12Unsupported Platforms
13--------------------------
14
15This library includes no-op support for unsupported platforms. That is, it will
16build on *all* platforms but always fail on unsupported platforms.
17
181. You can turn this off by disabling the default `unsupported` feature. If you
19   do so, this library will fail to compile on unsupported platforms.
202. Alternatively, you can detect unsupported platforms at runtime by checking
21   the `xattr::SUPPORTED_PLATFORM` boolean.
22