[package]
name = "qubit-codec-text"
version = "0.1.0"
edition = "2024"
rust-version = "1.94"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-codec-text"
description = "Buffer-oriented text encoding and decoding utilities for Rust"
homepage = "https://github.com/qubit-ltd/rs-codec-text"
documentation = "https://docs.rs/qubit-codec-text"
readme = "README.md"
keywords = ["text", "encoding", "codec", "unicode", "utf8"]
categories = ["encoding", "text-processing"]
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/RUST_CODING_STYLE.md",
"/RUST_CODING_STYLE.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/resources/**",
"/src/**",
"/tests/**",
]
[lib]
name = "qubit_codec_text"
doctest = true
[[test]]
name = "error"
path = "tests/error/mod.rs"
[[test]]
name = "codec"
path = "tests/codec/mod.rs"
[[test]]
name = "decode"
path = "tests/decode/mod.rs"
[[test]]
name = "encode"
path = "tests/encode/mod.rs"
[[test]]
name = "charset"
path = "tests/charset/mod.rs"
[dependencies]
thiserror = "2.0"
qubit-codec = "0.5"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }