@schlink just in case, you're benchmarking your Rust code in --release mode, right?
The very best easy to parallelize CPU-heavy Rust code is by using the rayon crate: https://docs.rs/rayon/
@bugaevc ok i found a workaround and now I'm using all 8 cores! thanks so much!