# Description Add `README.md` files to each crate in our workspace (-plugins) and also include it in the `lib.rs` documentation for <docs.rs> (if there is no existing `lib.rs` crate documentation) In all new README I added the defensive comment that the crates are not considered stable for public consumption. If necessary we can adjust this if we deem a crate useful for plugin authors.
25 lines
593 B
Rust
25 lines
593 B
Rust
#![doc = include_str!("../README.md")]
|
|
mod casing;
|
|
mod deansi;
|
|
pub mod emoji;
|
|
pub mod filesystem;
|
|
pub mod locale;
|
|
mod shared_cow;
|
|
pub mod utils;
|
|
|
|
pub use locale::get_system_locale;
|
|
pub use utils::{
|
|
enable_vt_processing, get_default_config, get_default_env, get_ls_colors,
|
|
stderr_write_all_and_flush, stdout_write_all_and_flush,
|
|
};
|
|
|
|
pub use casing::IgnoreCaseExt;
|
|
pub use deansi::{
|
|
strip_ansi_likely, strip_ansi_string_likely, strip_ansi_string_unlikely, strip_ansi_unlikely,
|
|
};
|
|
pub use emoji::contains_emoji;
|
|
pub use shared_cow::SharedCow;
|
|
|
|
#[cfg(unix)]
|
|
pub use filesystem::users;
|