Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 25-Apr-2025 | - | 355 | 223 | ||
tests/ | 25-Apr-2025 | - | 76 | 58 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 653 | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 964 | 37 | 33 | |
CHANGELOG.md | D | 25-Apr-2025 | 171 | 7 | 5 | |
Cargo.toml | D | 25-Apr-2025 | 1,006 | 41 | 37 | |
LICENSE | D | 25-Apr-2025 | 16.3 KiB | 374 | 293 | |
METADATA | D | 25-Apr-2025 | 384 | 21 | 20 | |
MODULE_LICENSE_MPL | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 908 | 22 | 13 | |
cargo_embargo.json | D | 25-Apr-2025 | 250 | 15 | 14 |
README.md
1# ucs2-rs 2 3[](https://crates.io/crates/ucs2) 4[](https://docs.rs/ucs2) 5 6 7UCS-2 handling for Rust. 8 9Note that UCS-2 is the predecessor of [UTF-16](https://en.wikipedia.org/wiki/UTF-16). 10It is a **fixed-length** encoding, and it is used for things like [UEFI](http://www.uefi.org/). 11 12## History 13 14This crate arose out of the needs of the [`uefi-rs`](https://github.com/GabrielMajeri/uefi-rs) crate. 15The code was extracted and placed here for easier maintenance and easier reuse. 16 17Most of the initial code has been contributed by [FredrikAleksander](https://github.com/FredrikAleksander). 18 19## License 20 21Licensed under the Mozilla Public License 2.0. See the [LICENSE](LICENSE) file for the full text. 22