1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
// This is a part of rust-encoding. // // Any copyright is dedicated to the Public Domain. // https://creativecommons.org/publicdomain/zero/1.0/ //! Japanese index tables for [rust-encoding](https://github.com/lifthrasiir/rust-encoding). #![cfg_attr(test, feature(test))] #[cfg(test)] #[macro_use] extern crate encoding_index_tests; /// JIS X 0208 with common extensions. /// /// From the Encoding Standard: /// /// > This is the JIS X 0208 standard including formerly proprietary extensions from IBM and NEC. pub mod jis0208; /// JIS X 0212. /// /// From the Encoding Standard: /// /// > This is the JIS X 0212 standard. /// > It is only used by the euc-jp decoder due to lack of widespread support elsewhere. pub mod jis0212;