Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ See the additional documents on `encoding::types` module for more information on
Encoding covers all encodings specified by WHATWG Encoding Standard and some more:

* 7-bit strict ASCII (`ascii`)
* ArmSCII-8 (`armscii-8`)
* UTF-8 (`utf-8`)
* UTF-16 in little endian (`utf-16` or `utf-16le`) and big endian (`utf-16be`)
* All single byte encoding in WHATWG Encoding Standard:
Expand Down
1 change: 1 addition & 0 deletions src/all.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ pub fn encodings() -> &'static [EncodingRef] {
const ENCODINGS: &'static [EncodingRef] = &[
ERROR,
ASCII,
ARMSCII_8,
IBM866,
ISO_8859_1,
ISO_8859_2,
Expand Down