Parts of the fuzzy codebase operate on vectors of characters.
Other parts re-use parts of rust's regex library which operate on raw bytes.
In a few places in the fuzzy code, we naively convert u8 to char, assuming the bytes represent ascii characters.
We should handle non-ascii text properly.
Parts of the fuzzy codebase operate on vectors of characters.
Other parts re-use parts of rust's
regexlibrary which operate on raw bytes.In a few places in the fuzzy code, we naively convert
u8tochar, assuming the bytes represent ascii characters.We should handle non-ascii text properly.