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
--strict-utf8 CLI flag for strict UTF-8 validation in the CLI
Changed
CLI now defaults to lossy UTF-8 reading; no longer exits on invalid byte sequences
Documentation examples updated to use lossy APIs
Deprecated
read_lines — use read_lines_lossy for lossy text, read_to_bytes for byte-perfect whole-file reads, or get_reader + BufReader for streaming byte processing
read_to_string — use read_to_string_lossy or read_to_bytes
read_to_string_async — use read_to_string_lossy_async or read_to_bytes_async