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