Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FillZpp/sys-info-rs
Get system information in Rust.
https://github.com/FillZpp/sys-info-rs
rust sys-info-rs
Last synced: 3 months ago
JSON representation
Get system information in Rust.
- Host: GitHub
- URL: https://github.com/FillZpp/sys-info-rs
- Owner: FillZpp
- License: mit
- Created: 2015-02-19T09:01:38.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-01-02T21:19:23.000Z (about 1 year ago)
- Last Synced: 2024-04-29T20:43:02.667Z (9 months ago)
- Topics: rust, sys-info-rs
- Language: Rust
- Size: 136 KB
- Stars: 170
- Watchers: 5
- Forks: 57
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# sys-info-rs
[![Build Status](https://travis-ci.org/FillZpp/sys-info-rs.svg?branch=master)](https://travis-ci.org/FillZpp/sys-info-rs)
Get system information in Rust.
For now it supports Linux, Mac OS X, illumos, Solaris, FreeBSD, OpenBSD, NetBSD and Windows.
And now it can get information of kernel/cpu/memory/disk/load/hostname and so on.[Documentation](https://docs.rs/sys-info)
### Usage
Add this to `Cargo.toml`:```
[dependencies]
sys-info = "0.9"
```and add this to crate root:
```
extern crate sys_info;
```