-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (32 loc) · 949 Bytes
/
Cargo.toml
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
[package]
name = "hid-api-rs"
description = "Hardware proxy for injecting & intercepting keyboard/mouse inputs"
version = "3.0.1"
edition = "2021"
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/StrateimTech/hid-api-rs"
authors = ["Etho"]
keywords = ["hid", "linux", "usb", "mouse", "keyboard"]
categories = ["api-bindings", "hardware-support", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
once_cell = "1.18.0"
num_enum = "0.7.2"
strum = "0.25.0"
strum_macros = "0.25.3"
[lib]
name = "hid_api_rs"
path = "src/lib.rs"
[[bin]]
name = "hid_api_example"
path = "src/example/bin-generic.rs"
[[bin]]
name = "hid_api_example_mouse"
path = "src/example/bin-mouse.rs"
[[bin]]
name = "hid_api_example_injection"
path = "src/example/bin-injection.rs"
[[bin]]
name = "hid_api_example_keyboard"
path = "src/example/bin-keyboard.rs"