-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (27 loc) · 854 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
[package]
name = "win-hotkeys"
version = "0.4.2"
license = "MIT"
repository = "https://github.com/iholston/win-hotkeys"
homepage = "https://github.com/iholston/win-hotkeys"
documentation = "https://docs.rs/win-hotkeys"
readme = "README.md"
description = "A lightweight, thread-safe rust library for system-wide hotkey management on Windows"
categories = ["os::windows-apis", "api-bindings"]
keywords = ["hotkey", "windows", "keyboard", "global", "win32"]
edition = "2021"
[dependencies]
windows = { version = "0.52", features = [
"Win32_Foundation",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
]}
thiserror = "2.0.4"
crossbeam-channel = "0.5.14"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = [
"aarch64-pc-windows-msvc",
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc",
]