encoding_rs aspires to become an implementation of the Encoding Standard that
You should not expect the above-stated aspiration to be fulfilled yet.
Please see the file named COPYRIGHT.
Generated API documentation is available online.
For design considerations, please see the associated technical proposal to rewrite uconv in Rust.
For decoding to UTF-16, the goal is to perform at least as well as Gecko's old uconv. For decoding to UTF-8, the goal is to perform at least as well as rust-encoding.
Encoding to UTF-8 should be fast. (UTF-8 to UTF-8 encode should be equivalent
to memcpy
and UTF-16 to UTF-8 should be fast.)
Speed is a non-goal when encoding to legacy encodings. Encoding to legacy encodings should not be optimized for speed at the expense of code size as long as form submission and URL parsing in Gecko don't become noticeably too slow in real-world use.
This code is being prototyped as a new project as opposed to patches to rust-encoding both to avoid breaking rust-encoding with in-progress exploration and to be able to see where the API design would go from scratch given the goals.
It is expected that encoding_rs will use code from rust-encoding.
Evaluation of whether it makes sense to propose portions of encodingrs to be adopted into rust-encoding will be best deferred until encodingrs is further along as a prototype.
unsafe
.usize
instead of u8
at a time).Add Encoding.is_ascii_compatible()
.
Add Encoding::for_bom()
.
Make ==
for Encoding
use name comparison instead of pointer comparison,
because uses of the encoding constants in different crates result in
different addresses and the constant cannot be turned into statics without
breaking other things.
The initial release.