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