[package]
edition = "2024"
rust-version = "1.85"
name = "ime_shift_fix"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protect IME mode while selecting text with Shift+Click on Windows."
documentation = "https://docs.rs/ime_shift_fix"
readme = "README.md"
keywords = [
"cli",
"windows",
"ime",
"daemon",
"service",
]
categories = [
"command-line-utilities",
"os::windows-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ou6326/ime-shift-fix"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[[bin]]
name = "ime-shift-fix"
path = "src/main.rs"
[dependencies.ctrlc]
version = "3.5"
[dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Environment",
"Win32_System_LibraryLoader",
"Win32_System_Registry",
"Win32_System_RemoteDesktop",
"Win32_System_Services",
"Win32_System_Threading",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]
[target."cfg(windows)".build-dependencies.winresource]
version = "0.1"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
debug = 0
debug-assertions = false
panic = "abort"
overflow-checks = false
incremental = false
strip = true