[package] name = "systemstat" version = "0.2.3" edition = "2018" authors = [ "Val Packett " ] keywords = [ "System", "Info" ] description = "Get system information/statistics in a cross-platform way" license = "Unlicense" readme = "README.md" homepage = "https://github.com/valpackett/systemstat" repository = "https://github.com/valpackett/systemstat" [dependencies] time = "0.3.9" lazy_static = "1.0" bytesize = "1.1" libc = "0.2" the_serde = { package = "serde", version = "1.0", features = ["derive"], optional = true } [target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies] nom = "7.0" [target.'cfg(windows)'.dependencies.winapi] version = "0.3" features = ["fileapi", "sysinfoapi", "minwindef", "winbase", "winerror", "ws2def", "ws2ipdef", "pdh"] [package.metadata.docs.rs] targets = [ "x86_64-unknown-freebsd", "x86_64-unknown-openbsd", "x86_64-unknown-netbsd", "x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc" ] [features] serde = ["the_serde", "bytesize/serde", "time/serde"]