mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 14:22:23 +00:00
7 lines
150 B
Rust
7 lines
150 B
Rust
extern crate num_cpus;
|
|
|
|
fn main() {
|
|
println!("Logical CPUs: {}", num_cpus::get());
|
|
println!("Physical CPUs: {}", num_cpus::get_physical());
|
|
}
|