Count the number of CPUs on the current machine.
Add to Cargo.toml:
toml [dependencies] num_cpu = "1.0"
In your main.rs or lib.rs:
main.rs
lib.rs
rust // count logical cores this process could try to use let num = num_cpu::get();