deps: remove 'num_cpus'

Now that std:🧵:available_parallelism is a thing, we no longer
need num_cpus.
This commit is contained in:
Andrew Gallant
2023-01-05 08:15:09 -05:00
parent 61101289fa
commit 28bff84a0a
4 changed files with 56 additions and 53 deletions

View File

@@ -55,7 +55,7 @@ fn main() {
fn try_main(args: Args) -> Result<()> {
use args::Command::*;
let matched = match args.command()? {
let matched = match args.command() {
Search => search(&args),
SearchParallel => search_parallel(&args),
SearchNever => Ok(false),