-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.31 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (36 loc) · 1.31 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
[package]
name = "openlogi-inject"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "OS input-event synthesis for OpenLogi actions (macOS CGEvent/NSEvent, Linux uinput/D-Bus, Windows SendInput)."
keywords = ["logitech", "input", "uinput", "sendinput", "mouse"]
categories = ["hardware-support", "os"]
[dependencies]
openlogi-core = { path = "../openlogi-core", version = "0.6.23" }
tracing = { workspace = true }
[dev-dependencies]
serde = { workspace = true }
tracing-subscriber = { workspace = true }
[lints]
workspace = true
[target.'cfg(target_os = "linux")'.dependencies]
evdev = { workspace = true }
zbus = "5"
[target.'cfg(target_os = "macos")'.dependencies]
core-graphics = { version = "0.25.0", features = ["highsierra"] }
core-foundation = { workspace = true }
objc2 = { workspace = true }
objc2-app-kit = { workspace = true, features = [
"NSEvent",
"NSGraphicsContext",
"objc2-core-graphics",
] }
objc2-core-graphics = { version = "0.3.2", features = ["CGEvent"] }
objc2-foundation = { workspace = true }
# SendInput-based action synthesis (execute_windows).
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { workspace = true, features = ["Win32_UI_Input_KeyboardAndMouse"] }