rust-encoding
rust-encoding copied to clipboard
Character encoding support for Rust
Can you please provide the community activity?
This makes it easier to find the source repository for crates published on crates.io page.
What is the status of the project? It seems to have seen no updates in the last 5 years, is it abandoned? And if so what is the "official" replacement?...
i have a GBK string, **GBK.decode(rst_raw, DecoderTrap::Strict).is_err()** and **UTF_8.decode(rst_raw, DecoderTrap::Strict).is_err()** can not judge right result.i don't why, so i writed judge "utf8 str" code: fn is_utf8(data: &[u8]) -> bool {...
This would help me in packaging for Fedora.
The current technique for building the single byte "forward" and "backward" function is to generate lookup tables using `gen_index.py` Here's an example generated file: https://github.com/lifthrasiir/rust-encoding/blob/master/src/index/singlebyte/windows_1252.rs There are some benchmarks that...
Fix for https://github.com/lifthrasiir/rust-encoding/issues/123 Most of the fixes were generated by running `cargo fix` and `cargo fix --edition` on the current nightly toolchain. ## Unresolved If you rebuild the `.rs` files...
On master, `cargo build` emits 237 warnings. Here are the different kinds of warnings: - [ ] warning: trait objects without an explicit `dyn` are deprecated - [ ] `...`...
Part of https://github.com/lifthrasiir/rust-encoding/issues/111