2026-07-19 12:09:54 -05:00
|
|
|
[package]
|
|
|
|
|
name = "msdos-encodings"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
description = "Bidirectional, emulator-grade conversion between MS-DOS code pages and Unicode"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
|
2026-07-19 12:28:33 -05:00
|
|
|
[features]
|
|
|
|
|
default = ["dbcs"]
|
|
|
|
|
# The double-byte CJK pages (932/936/949/950). Their tables are large;
|
|
|
|
|
# disable default features for a lean single-byte-only build.
|
|
|
|
|
dbcs = []
|
|
|
|
|
|
2026-07-19 12:09:54 -05:00
|
|
|
[dependencies]
|
|
|
|
|
thiserror = "2"
|
|
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
lto = true
|