blob: a6cbbd24d85ba25e861feb296d9a4a023a39e2c2 [file] [log] [blame]
Joel Galenson006226b2020-10-23 08:06:44 -07001[package]
2
3name = "num_cpus"
David LeGare1c542932022-03-02 16:21:07 +00004version = "1.13.1"
Joel Galenson006226b2020-10-23 08:06:44 -07005description = "Get the number of CPUs on a machine."
6authors = ["Sean McArthur <sean@seanmonstar.com>"]
David LeGare1c542932022-03-02 16:21:07 +00007license = "MIT OR Apache-2.0"
Joel Galenson006226b2020-10-23 08:06:44 -07008repository = "https://github.com/seanmonstar/num_cpus"
9documentation = "https://docs.rs/num_cpus"
10keywords = ["cpu", "cpus", "cores"]
11categories = ["hardware-support"]
12readme = "README.md"
13
David LeGare1c542932022-03-02 16:21:07 +000014[target.'cfg(not(windows))'.dependencies]
Joel Galenson006226b2020-10-23 08:06:44 -070015libc = "0.2.26"
16
17[target.'cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), target_os = "hermit"))'.dependencies]
18hermit-abi = "0.1.3"