ls: use OnceCell from std instead of once_cell

This commit is contained in:
Daniel Hofstetter 2023-09-11 16:05:19 +02:00
parent 41d284494a
commit 6d0bac2842

View file

@ -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)]