Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.34 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.34 KB

rust-psutil

crates.io docs.rs Minimum rustc version Matrix

A process and system monitoring library for Rust, heavily inspired by the psutil module for Python.

Usage

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"] }

Platform Support

The currently supported platforms include:

  • Linux
  • macOS
  • Windows

platform-support details the implementation level of each platform.

Apps using rust-psutil

Related projects