Snap for 7357013 from cfce29c65a1c3ced12f398d7ea096bda6529c3de to sc-release Change-Id: I0172caf400793b4b19317ae87d4ed5b59ac42877
Count the number of CPUs on the current machine.
Add to Cargo.toml:
[dependencies] num_cpus = "1.0"
In your main.rs or lib.rs:
main.rs
lib.rs
extern crate num_cpus; // count logical cores this process could try to use let num = num_cpus::get();