[package]
edition = "2021"
rust-version = "1.82"
name = "win-text-inject"
version = "0.1.0"
build = false
exclude = ["/.github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deliver text into the focused Windows application correctly: clipboard privacy formats, modifier sanitization, integrity-level checks, and a delayed-render restore that does not race the target's read."
documentation = "https://docs.rs/win-text-inject"
readme = "README.md"
keywords = [
"windows",
"clipboard",
"sendinput",
"dictation",
"accessibility",
]
categories = [
"os::windows-apis",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/emerson-d-lopes/win-text-inject"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[lib]
name = "win_text_inject"
path = "src/lib.rs"
[[example]]
name = "clipboard_privacy"
path = "examples/clipboard_privacy.rs"
[[example]]
name = "fake_clipboard_manager"
path = "examples/fake_clipboard_manager.rs"
[[example]]
name = "real_app_test"
path = "examples/real_app_test.rs"
[[example]]
name = "repro_502"
path = "examples/repro_502.rs"
[[example]]
name = "watcher_probe"
path = "examples/watcher_probe.rs"
[target."cfg(windows)".dependencies.windows]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_System_DataExchange",
"Win32_System_Memory",
"Win32_System_LibraryLoader",
"Win32_Graphics_Gdi",
"Win32_System_Threading",
"Win32_Security",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
]
[target."cfg(windows)".dev-dependencies.windows]
version = "0.61"
features = ["Win32_Graphics_Gdi"]