[package] name = "gpustat_fork" version = "0.2.1" edition = "2018" license = "GPL-2.0" description = "A rust-version of gpustat. All credit to the original crate author: just added functionality for continuous monitoring every 2 seconds" [profile.release] lto = true opt-level = 3 panic = 'abort' codegen-units = 1 [dependencies] nix = "0.26" clap = { version = "4", features = ["derive"] } chrono = { version = "0.4", default-features = false, features = ["clock"] } sysinfo = { version = "0.29", default-features = false } hostname = "^0.3" thiserror = "1.0" comfy-table = "7" nvml-wrapper = { version = "0.9", default-features = false } [features] legacy-functions = ["nvml-wrapper/legacy-functions"]