encoding_index_tradchinese/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//! Traditional Chinese index tables for
7//! [rust-encoding](https://github.com/lifthrasiir/rust-encoding).
8
9#![cfg_attr(test, feature(test))]
10
11#[cfg(test)]
12#[macro_use]
13extern crate encoding_index_tests;
14
15/// Big5 and HKSCS.
16///
17/// From the Encoding Standard:
18///
19/// > This matches the Big5 standard
20/// > in combination with the Hong Kong Supplementary Character Set and other common extensions.
21pub mod big5;
22