summaryrefslogtreecommitdiffstats
path: root/third_party/rust/whatsys/README.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /third_party/rust/whatsys/README.md
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/whatsys/README.md')
-rw-r--r--third_party/rust/whatsys/README.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/third_party/rust/whatsys/README.md b/third_party/rust/whatsys/README.md
new file mode 100644
index 0000000000..7c6f308deb
--- /dev/null
+++ b/third_party/rust/whatsys/README.md
@@ -0,0 +1,35 @@
+# `whatsys` -- What's this?
+
+[![Crates.io version](https://img.shields.io/crates/v/whatsys.svg?style=flat-square)](https://crates.io/crates/whatsys)
+[![docs.rs docs](https://img.shields.io/badge/docs-latest-blue.svg?style=flat-square)](https://docs.rs/whatsys)
+[![License: MIT](https://img.shields.io/github/license/badboy/whatsys?style=flat-square)](LICENSE)
+[![Build Status](https://img.shields.io/github/actions/workflow/status/badboy/whatsys/ci.yml?branch=main&style=flat-square)](https://github.com/badboy/whatsys/actions/workflows/ci.yml?query=workflow%3ACI)
+
+What kernel version is running?
+
+# Example
+
+```rust
+let kernel = whatsys::kernel_version(); // E.g. Some("20.3.0")
+```
+
+# Supported operating systems
+
+We support the following operating systems:
+
+* Windows
+* macOS
+* Linux
+* Android
+
+# License
+
+MIT. See [LICENSE](LICENSE).
+
+Based on:
+
+* [sys-info](https://crates.io/crates/sys-info), [Repository](https://github.com/FillZpp/sys-info-rs), [MIT LICENSE][sys-info-mit]
+* [sysinfo](https://crates.io/crates/sysinfo), [Repository](https://github.com/GuillaumeGomez/sysinfo), [MIT LICENSE][sysinfo-mit]
+
+[sys-info-mit]: https://github.com/FillZpp/sys-info-rs/blob/master/LICENSE
+[sysinfo-mit]: https://github.com/GuillaumeGomez/sysinfo/blob/master/LICENSE