ocelot-base 0.1.1

Shared base utilities for the ocelot project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod cli;
pub mod error;
pub mod file_path;
pub mod logging;
pub mod result;
pub mod shared_string;
pub mod timestamp;

pub use parking_lot::{Mutex, RwLock};

pub fn unansi(string: &str) -> String {
    anstream::adapter::strip_str(string).to_string()
}