qubit-codec-text 0.1.0

Buffer-oriented text encoding and decoding utilities for Rust
Documentation
// =============================================================================
//    Copyright (c) 2026 Haixing Hu.
//
//    SPDX-License-Identifier: Apache-2.0.
//
//    Licensed under the Apache License, Version 2.0.
// =============================================================================
mod ascii_codec;
mod charset_codec;
mod charset_convert_error;
mod charset_convert_hooks;
mod charset_converter;
mod latin1_codec;
mod malformed_action;
mod unmappable_action;
mod utf16_byte_codec;
mod utf16_u16_codec;
mod utf32_byte_codec;
mod utf32_u32_codec;
mod utf8_codec;

pub use ascii_codec::AsciiCodec;
pub use charset_codec::CharsetCodec;
pub use charset_convert_error::CharsetConvertError;
pub use charset_converter::CharsetConverter;
pub use latin1_codec::Latin1Codec;
pub use malformed_action::MalformedAction;
pub use unmappable_action::UnmappableAction;
pub use utf8_codec::Utf8Codec;
pub use utf16_byte_codec::Utf16ByteCodec;
pub use utf16_u16_codec::Utf16U16Codec;
pub use utf32_byte_codec::Utf32ByteCodec;
pub use utf32_u32_codec::Utf32U32Codec;