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
--encoding flag (also encoding = "..." in config) selecting how
file/stdin bytes are decoded. Values: auto (default; tries UTF-8,
falls back to ISO-8859-1 on decode failure), utf-8 (strict — errors
with a hint on invalid sequences), iso-8859-1 / latin1 (every byte 0x00–0xFF → U+0000–U+00FF). Decoder is dependency-free.
Changed
Reads are now always done as bytes via fs::read + input::decode,
not fs::read_to_string.
Behavior change
Default auto encoding means older files that happened to be Latin-1
now open silently instead of erroring with a UTF-8 decode error.