mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +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:
commit
ab995eb82a
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…
Add table
Add a link
Reference in a new issue