-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 936 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 936 Bytes
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
[package]
name = "randolf"
description = "A window management utility for Windows 11"
repository = "https://github.com/kimgoetzke/randolf"
version = "0.30.0"
edition = "2024"
[dependencies]
windows = { version = "0.62.2", features = ["Win32_UI_WindowsAndMessaging", "Win32_Graphics_Gdi", "Win32_UI_Input", "Win32_UI_Input_KeyboardAndMouse", "Win32_UI_Shell", "Win32_System", "Win32_System_Com", "Win32_UI_HiDpi", "Win32_System_LibraryLoader", "Win32_Graphics_Dwm"] }
win-hotkeys = "0.5.1"
log = "0.4.33"
trayicon = "0.4.1"
simplelog = "0.12.2"
time = "0.3.53" # Pin this transitive dependency to deal with CVE-2026-25727
crossbeam-channel = "0.5.16"
serde = { version = "1.0.228", features = ["derive"] }
toml = "1.1.2"
directories = "6.0.0"
[dev-dependencies]
tempfile = "3.27.0"
testing_logger = "0.1.1"
serial_test = "3.5.0"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[[bin]]
name = "randolf"
path = "src/main.rs"