A process and system monitoring library for Rust, heavily inspired by the [psutil] module for Python.
Add this to your Cargo.toml
:
toml
[dependencies]
psutil = "3.2.0"
Or to only use certain submodules:
toml
[dependencies]
psutil = { version = "3.2.0", default-features = false, features = ["cpu", "process"] }
Currently, only Linux and macOS are supported, but support is planned for all major platforms.
platform-support details the implementation level of each platform.