use unicode_normalization::UnicodeNormalization; pub fn normalize_utf8(input: &str) -> String { input.nfc().collect::() }