summaryrefslogtreecommitdiffstats
path: root/vendor/xattr/README.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/xattr/README.md
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/xattr/README.md')
-rw-r--r--vendor/xattr/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/xattr/README.md b/vendor/xattr/README.md
new file mode 100644
index 000000000..ca1616f4e
--- /dev/null
+++ b/vendor/xattr/README.md
@@ -0,0 +1,22 @@
+xattr
+=====
+
+[![Build Status](https://travis-ci.org/Stebalien/xattr.svg?branch=master)](https://travis-ci.org/Stebalien/xattr)
+[![Build Status](https://api.cirrus-ci.com/github/Stebalien/xattr.svg)](https://cirrus-ci.com/github/Stebalien/xattr)
+
+A small library for setting, getting, and listing extended attributes.
+
+Supported Platforms: Android, 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.
+
+1. You can turn this off by disabling the default `unsupported` feature. If you
+ do so, this library will fail to compile on unsupported platforms.
+2. Alternatively, you can detect unsupported platforms at runtime by checking
+ the `xattr::SUPPORTED_PLATFORM` boolean.