-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (67 loc) · 2.04 KB
/
Cargo.toml
File metadata and controls
75 lines (67 loc) · 2.04 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "komorebi-switcher"
version = "0.10.1"
description = "A minimal workspace switcher for the Komorebi tiling window manager, seamlessly integrated into Windows 10/11 taskbar or macOS menu bar."
authors = ["Amr Bashir <amr.bashir2015@gmail.com>"]
edition = "2021"
license = "MIT"
[package.metadata.winresource]
CompanyName = "Amr Bashir"
LegalCopyright = "© 2025 Amr Bashir. Licensed under the MIT License."
[profile.release]
codegen-units = 1 # Allows LLVM to perform better optimization.
lto = true # Enables link-time-optimizations.
opt-level = "s" # Prioritizes small binary size.
panic = "abort" # Higher performance by disabling panic handlers.
strip = true # Ensures debug symbols are removed.
[target."cfg(windows)".build-dependencies]
winresource = "0.1"
[dependencies]
anyhow = "1"
serde_json = "1.0"
dirs = "6.0"
serde = { version = "1.0", features = ["derive"] }
strum = { version = "0.27", features = ["derive"] }
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
rfd = "0.15.3"
font-kit = "0.14.3"
color = "0.3.2"
[target."cfg(windows)".dependencies]
winit = "0.30"
raw-window-handle = "0.6"
wgpu = "24.0"
pollster = "0.4"
egui = "0.31"
egui-winit = "0.31"
egui-wgpu = "0.31"
egui_animation = "0.8"
windows-registry = "0.5"
muda = "0.17"
tray-icon = "0.21"
uds_windows = "1.1"
[target."cfg(windows)".dependencies.windows]
version = "0.61"
features = [
"Win32_UI_WindowsAndMessaging",
"Win32_System_LibraryLoader",
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_UI_Input_KeyboardAndMouse",
"UI_ViewManagement",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct2D_Common",
"Win32_Graphics_DirectComposition",
"Win32_Graphics_Dxgi_Common",
"Win32_UI_HiDpi",
]
[target.'cfg(target_os = "macos")'.dependencies]
dispatch = "0.2.0"
objc2 = "0.6.3"
objc2-foundation = "0.3.2"
objc2-app-kit = "0.3.2"
[patch.crates-io]
wgpu = { git = "https://github.com/gfx-rs/wgpu", rev = "2f607d3e64d5da618b30c084fb59cf3abacf9aa1" }