[package]
edition = "2024"
name = "textcode"
version = "0.4.0"
authors = ["Cesbo Developers Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Text encoding/decoding library. Supports: UTF-8, ISO6937, ISO8859, GB2312"
documentation = "https://docs.rs/textcode"
readme = "README.md"
keywords = [
"encoding",
"unicode",
"charset",
]
categories = [
"encoding",
"text-processing",
"internationalization",
]
license = "MIT"
repository = "https://github.com/cesbo/textcode"
[lib]
name = "textcode"
path = "src/lib.rs"
[[test]]
name = "dvb"
path = "tests/dvb.rs"
[[test]]
name = "gb2312"
path = "tests/gb2312.rs"
[[test]]
name = "geo"
path = "tests/geo.rs"
[[test]]
name = "iso6937"
path = "tests/iso6937.rs"
[[test]]
name = "iso8859"
path = "tests/iso8859.rs"
[[test]]
name = "utf16"
path = "tests/utf16.rs"
[[test]]
name = "utf8"
path = "tests/utf8.rs"