[package]
edition = "2024"
rust-version = "1.96"
name = "openlogi-hid"
version = "0.6.21"
authors = ["AprilNEA <dev@aprilnea.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HID++ device discovery for OpenLogi, wrapping the hidpp crate over async-hid."
readme = "README.md"
keywords = [
"logitech",
"hidpp",
"hid",
"mouse",
"async",
]
categories = [
"hardware-support",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AprilNEA/OpenLogi"
[lib]
name = "openlogi_hid"
path = "src/lib.rs"
[dependencies.async-hid]
version = "0.5.2"
[dependencies.futures-concurrency]
version = "7"
[dependencies.futures-lite]
version = "2"
[dependencies.hidpp]
version = "0.6.21"
package = "openlogi-hidpp"
[dependencies.num_enum]
version = "0.7.3"
[dependencies.openlogi-core]
version = "0.6.21"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"sync",
"time",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Devices_HumanInterfaceDevice",
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
]
[lints.clippy]
doc_markdown = "allow"
expect_used = "warn"
missing_errors_doc = "allow"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"