Skip to content

Commit 8dd5f8f

Browse files
sylvestrecakebaker
authored andcommitted
sort: replace wildcard rayon import with specific import
1 parent c02a8f4 commit 8dd5f8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/uu/sort/src/sort.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use foldhash::{HashMap, SharedSeed};
3030
use numeric_str_cmp::{NumInfo, NumInfoParseSettings, human_numeric_str_cmp, numeric_str_cmp};
3131
use rand::{RngExt as _, rng};
3232
#[cfg(not(target_os = "wasi"))]
33-
use rayon::prelude::*;
33+
use rayon::slice::ParallelSliceMut;
3434
use std::cmp::Ordering;
3535
use std::env;
3636
use std::ffi::{OsStr, OsString};

0 commit comments

Comments
 (0)