A process and system monitoring library for Rust, heavily inspired by the psutil module for Python.
Add this to your Cargo.toml
:
[dependencies]
psutil = "3.1.0"
Or to opt into only a certain submodule:
[dependencies]
psutil = { version = "3.1.0", default-features = false, features = ["process"] }
The currently supported platforms include:
- Linux
- macOS
- Windows
platform-support details the implementation level of each platform.