mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 15:34:48 +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());
|
|
}
|