mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 23:32:39 +00:00
ls: use OnceCell from std instead of once_cell
This commit is contained in:
parent
41d284494a
commit
6d0bac2842
1 changed files with 1 additions and 2 deletions
|
@ -12,8 +12,7 @@ use clap::{
|
|||
use glob::{MatchOptions, Pattern};
|
||||
use lscolors::LsColors;
|
||||
use number_prefix::NumberPrefix;
|
||||
use once_cell::unsync::OnceCell;
|
||||
use std::num::IntErrorKind;
|
||||
use std::{cell::OnceCell, num::IntErrorKind};
|
||||
use std::{collections::HashSet, io::IsTerminal};
|
||||
|
||||
#[cfg(windows)]
|
||||
|
|
Loading…
Reference in a new issue