-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (56 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
63 lines (56 loc) · 1.6 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
[package]
name = "desktop_grouping"
version = "3.0.0"
edition = "2024"
license = "MIT"
homepage = "https://blog.weizlogy.com/software/2024/10/25/desktopgrouping.html"
repository = "https://github.com/weizlogy/Desktop-Grouping"
readme = "README.md"
description = "DesktopGrouping is a utility for Windows that helps to organize icons on the desktop like Fences and very simple style."
authors = ["weizlogy"]
[dependencies]
# 繧ュ繝」繝ュ繧ー
log = "0.4"
env_logger = "0.10"
# 設定ファイル関連
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
# ユーティリティ
scopeguard = "1.2"
chrono = "0.4"
arboard = "3"
rand = "0.8"
colorsys = "0.6"
# システムトレイアイコン (Win32 ネイティブで自前実装するか検討中だが一旦維持)
tray-icon = "0.20"
# Windows API (DirectX / Win32 Native)
windows = { version = "0.52", features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_UI_Shell",
"Win32_Storage_FileSystem",
"Win32_UI_Controls",
"Win32_Graphics_Dwm",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct2D",
"Win32_Graphics_Direct2D_Common",
"Win32_Graphics_DirectWrite",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Graphics_DirectComposition",
"Win32_Graphics_Imaging",
"Win32_System_Com",
"Win32_System_DataExchange",
"Win32_System_Memory",
"Win32_System_Ole",
"Foundation",
"Foundation_Numerics",
] }
[build-dependencies]
embed-resource = "2.3"
[dev-dependencies]
tempfile = "3"