nu_utils/
lib.rs

1#![doc = include_str!("../README.md")]
2mod casing;
3mod deansi;
4pub mod emoji;
5pub mod filesystem;
6pub mod flatten_json;
7pub mod float;
8pub mod locale;
9mod multilife;
10mod nu_cow;
11mod quoting;
12mod shared_cow;
13mod split_read;
14pub mod strings;
15pub mod utils;
16
17pub use locale::get_system_locale;
18pub use utils::{
19    ConfigFileKind, enable_vt_processing, get_ls_colors, stderr_write_all_and_flush,
20    stdout_write_all_and_flush, terminal_size,
21};
22
23pub use casing::IgnoreCaseExt;
24pub use deansi::{
25    strip_ansi_likely, strip_ansi_string_likely, strip_ansi_string_unlikely, strip_ansi_unlikely,
26};
27pub use emoji::contains_emoji;
28pub use flatten_json::JsonFlattener;
29pub use float::ObviousFloat;
30pub use multilife::MultiLife;
31pub use nu_cow::NuCow;
32pub use quoting::{escape_quote_string, needs_quoting};
33pub use shared_cow::SharedCow;
34pub use split_read::SplitRead;
35
36#[cfg(unix)]
37pub use filesystem::users;