You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a couple of places where we ignore the fact that unicode case folding can generate multiple characters, and I don't think there are any cases where we correctly handle context. rust-lang/rust#98490 would make this much easier.
The text was updated successfully, but these errors were encountered:
A little more research suggests what we actually want is case folding, e.g. via https://github.com/unicode-rs/rust-caseless. But this might be slower (particularly given need for a different normalization) and it's not clear if it really matters given that we're often running against already transliterated data, or only interested in an initial.
There are a couple of places where we ignore the fact that unicode case folding can generate multiple characters, and I don't think there are any cases where we correctly handle context. rust-lang/rust#98490 would make this much easier.
The text was updated successfully, but these errors were encountered: