pub use std::{
env::{
args as getArguments,
consts::{
OS,
ARCH
},
current_dir as currentDir
},
path::PathBuf as FilePath,
fs::{
read_to_string as readFile,
write as writeFile,
read_dir as readDir
},
time::Instant as Time,
process::exit,
error::Error,
fmt::{
Formatter,
Display,
Result as Rst,
Debug
},
collections::{
HashMap as Map,
HashSet as Set,
VecDeque as Deque
},
sync::LazyLock,
mem::take
};
pub use colored::Colorize as Colored;
pub use regex::bytes::{
Regex,
RegexSet,
Captures
};
pub use indexmap::IndexMap;
pub use ahash::{
AHashMap as FastMap,
AHashSet as FastSet
};
pub use smallvec::{
SmallVec
};
pub use rustc_version_runtime::version as rustcv;
pub use strum_macros::AsRefStr;
pub use enum_dispatch::enum_dispatch as dispatch;