seanmonstar / num_cpus

Get the number of CPUs in Rust
Apache License 2.0
582 stars 91 forks source link

Cull unused libc dependency on windows #101

Closed MaulingMonkey closed 4 years ago

MaulingMonkey commented 4 years ago

libc is already not used on windows, no need to download & compile it:

https://github.com/seanmonstar/num_cpus/blob/9b146faf097c6e2b0bb0a313d0a978e537eeb0fd/src/lib.rs#L34-L35

(EDIT: looks like this shaves a good 15 seconds off each appveyor build? 182 vs 185)

seanmonstar commented 4 years ago

Nice catch, thanks!