-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "cpu-monitor"
description = "A library to get cpu usage over a given duration"
readme = "README.md"
version = "0.1.1"
authors = ["Richard Dodd <richard.o.dodd@gmail.com>"]
include = ["README.md", "Cargo.toml", "src/**/*.rs"]
repository = "https://github.com/derekdreery/cpu-monitor"
keywords = ["cpu", "monitor", "usage", "system", "info"]
categories = ["command-line-interface", "os"]
license = "MIT/Apache-2.0"
[badges]
appveyor = { repository = "derekdreery/cpu-monitor" }
travis-ci = { repository = "derekdreery/cpu-monitor" }
[features]
default = []
ci = ["skeptic"]
[target.'cfg(unix)'.dependencies]
linux_proc = "0.1.1"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3.9"
features = ["processthreadsapi", "minwindef"]
[build-dependencies.skeptic]
version = "0.13.7"
optional = true
[dev-dependencies]
skeptic = "0.13.7"