forked from GuillaumeGomez/sysinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (25 loc) · 886 Bytes
/
Cargo.toml
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 = "sysinfo"
version = "0.6.0"
authors = ["Guillaume Gomez <[email protected]>"]
description = "Library to handle processes"
repository = "https://github.com/GuillaumeGomez/sysinfo"
license = "LGPL-3.0+"
readme = "README.md"
categories = ["filesystem", "os::macos-apis", "os::unix-apis", "os::windows-apis"]
build = "build.rs"
[dependencies]
libc = "^0.2"
cfg-if = "0.1"
rayon = "^1.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi", "handleapi", "ioapiset", "minwindef", "pdh", "psapi", "synchapi", "sysinfoapi", "tlhelp32", "winbase", "winerror", "winioctl", "winnt"] }
[lib]
name = "sysinfo"
crate_type = ["rlib", "cdylib"]
path = "src/sysinfo.rs"
[features]
c-interface = []
[badges]
travis-ci = { repository = "GuillaumeGomez/sysinfo" }
appveyor = { repository = "GuillaumeGomez/sysinfo", service = "github" }