1 | [package] |
2 | |
3 | name = "num_cpus" |
4 | version = "1.16.0" |
5 | description = "Get the number of CPUs on a machine." |
6 | authors = ["Sean McArthur <sean@seanmonstar.com>" ] |
7 | license = "MIT OR Apache-2.0" |
8 | repository = "https://github.com/seanmonstar/num_cpus" |
9 | documentation = "https://docs.rs/num_cpus" |
10 | keywords = ["cpu" , "cpus" , "cores" ] |
11 | categories = ["hardware-support" ] |
12 | readme = "README.md" |
13 | |
14 | [target.'cfg(not(windows))'.dependencies] |
15 | libc = "0.2.26" |
16 | |
17 | [target.'cfg(target_os = "hermit")'.dependencies] |
18 | hermit-abi = "0.3.0" |
19 | |