[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-text-codec"
version = "0.1.0"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
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/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Buffer-oriented text encoding and decoding utilities for Rust"
homepage = "https://github.com/qubit-ltd/rs-text-codec"
documentation = "https://docs.rs/qubit-text-codec"
readme = "README.md"
keywords = [
"text",
"encoding",
"codec",
"unicode",
"utf8",
]
categories = [
"encoding",
"text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-text-codec"
[lib]
name = "qubit_text_codec"
path = "src/lib.rs"
doctest = true
[[test]]
name = "charset"
path = "tests/charset/mod.rs"
[[test]]
name = "codec"
path = "tests/codec/mod.rs"
[[test]]
name = "encoding"
path = "tests/encoding/mod.rs"
[[test]]
name = "error"
path = "tests/error/mod.rs"
[[test]]
name = "prelude_tests"
path = "tests/prelude_tests.rs"
[dependencies.qubit-io]
version = "0.5"
[dependencies.thiserror]
version = "2.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage)"]