text_fx/
lib.rs

1mod escape;
2mod hash;
3mod presentation;
4mod quote;
5mod similarity;
6mod transform;
7mod utf8;
8
9pub use hash::string_hash;
10pub use presentation::display_width;
11pub use quote::{QuoteStyle, Quoted, q, q_s, quoted};
12pub use similarity::fstrcmp_bounded;
13pub use transform::tr;
14pub use utf8::{Utf8Chunk, Utf8Iter};
15
16#[cfg(test)]
17mod tests {
18    use super::*;
19
20    #[test]
21    fn it_works() {
22        let result = 4;
23        assert_eq!(result, 4);
24    }
25}