-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (40 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "openlogi-hid"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "HID++ device discovery for OpenLogi, wrapping the hidpp crate over async-hid."
keywords = ["logitech", "hidpp", "hid", "mouse", "async"]
categories = ["hardware-support", "asynchronous"]
readme = "README.md"
[dependencies]
openlogi-core = { path = "../openlogi-core", version = "0.6.23" }
hidpp = { workspace = true }
async-hid = { workspace = true }
tokio = { workspace = true }
futures-lite = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
num_enum = { workspace = true }
futures-concurrency = "7"
# Native Win32 HID report writes (windows_hid.rs) — a fallback for async-hid's
# write path on Windows, plus the composite short/long endpoint handling in
# transport.rs.
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { workspace = true, features = [
"Win32_Devices_HumanInterfaceDevice",
"Win32_Foundation",
# CreateFileW's signature references PSECURITY_ATTRIBUTES, so it is only
# exposed when Win32_Security is also enabled.
"Win32_Security",
"Win32_Storage_FileSystem",
# WriteFile's signature references OVERLAPPED, so windows-sys 0.61.2 gates
# it behind Win32_System_IO as well.
"Win32_System_IO",
] }
[lints]
workspace = true