1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Merge pull request #5268 from cakebaker/ls_use_std_cell_oncecell

ls: use OnceCell from std instead of once_cell
This commit is contained in:
Sylvestre Ledru 2023-09-11 17:41:38 +02:00 committed by GitHub
commit ab995eb82a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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