2023-09-07 04:27:47 +00:00
|
|
|
[package]
|
|
|
|
name = "sjiswrap"
|
2023-09-07 20:29:18 +00:00
|
|
|
description = "UTF-8 to Shift JIS wrapper for old compilers."
|
|
|
|
authors = ["Luke Street <luke@street.dev>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2024-10-27 22:18:43 +00:00
|
|
|
version = "1.2.0"
|
2023-09-07 04:27:47 +00:00
|
|
|
edition = "2021"
|
2023-09-07 20:29:18 +00:00
|
|
|
publish = false
|
|
|
|
repository = "https://github.com/encounter/sjiswrap"
|
|
|
|
readme = "README.md"
|
|
|
|
categories = ["command-line-utilities"]
|
2024-10-27 22:18:43 +00:00
|
|
|
rust-version = "1.72.0"
|
2023-09-07 20:29:18 +00:00
|
|
|
|
|
|
|
# Size optimizations
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
opt-level = "z"
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
debug = []
|
2023-09-08 21:17:31 +00:00
|
|
|
nightly = [
|
|
|
|
"encoding_rs/simd-accel",
|
|
|
|
"encoding_rs/fast-kanji-encode",
|
|
|
|
]
|
2023-09-07 04:27:47 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-10-27 22:18:43 +00:00
|
|
|
anyhow = "1.0"
|
|
|
|
encoding_rs = "0.8"
|
|
|
|
memexec = { version = "0.2", features = ["hook"] }
|
|
|
|
num = "0.4"
|
|
|
|
rustc-hash = "2.0"
|
2023-09-07 04:27:47 +00:00
|
|
|
|
|
|
|
[dependencies.windows]
|
2024-10-27 22:18:43 +00:00
|
|
|
version = "0.58"
|
2023-09-07 04:27:47 +00:00
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
2023-09-08 20:55:56 +00:00
|
|
|
"Win32_Globalization",
|
2023-09-07 04:27:47 +00:00
|
|
|
"Win32_Security",
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
"Win32_System_Environment",
|
|
|
|
"Win32_System_IO",
|
|
|
|
"Win32_System_LibraryLoader",
|
|
|
|
"Win32_System_Memory",
|
|
|
|
]
|