[package]
edition = "2024"
name = "logitech-cve"
version = "1.5.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for interacting with Logitech virtual driver."
homepage = "https://github.com/BatogiX/logitech-cve"
documentation = "https://docs.rs/logitech-cve"
readme = "README.md"
keywords = [
"logitech",
"rust",
"windows",
"library",
]
categories = [
"os::windows-apis",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BatogiX/logitech-cve"
[lib]
name = "logitech_cve"
path = "src/lib.rs"
[[test]]
name = "keyboard_tests"
path = "tests/keyboard_tests.rs"
[[test]]
name = "mouse_tests"
path = "tests/mouse_tests.rs"
[dependencies.windows-sys]
version = "0.61"
features = [
"Wdk_Foundation",
"Wdk_Storage_FileSystem",
"Wdk_System_IO",
"Wdk_System_SystemServices",
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_WindowsProgramming",
"Win32_UI_WindowsAndMessaging",
]
default-features = false
[dev-dependencies.windows-sys]
version = "0.61"
features = [
"Win32_System_LibraryLoader",
"Win32_UI_Input_KeyboardAndMouse",
]
default-features = false