forked from glzr-io/zebar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (37 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
38 lines (37 loc) · 1.02 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
[workspace]
resolver = "2"
members = ["packages/desktop", "crates/*"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
thiserror = "2"
uuid = { version = "1", features = ["v4"] }
windows-core = "0.58"
windows = { version = "0.58", features = [
"Foundation",
"Foundation_Collections",
"implement",
"Media_Control",
"Win32_Devices_FunctionDiscovery",
"Win32_Globalization",
"Win32_Graphics_Gdi",
"Win32_Media",
"Win32_Media_Audio",
"Win32_Media_Audio_Endpoints",
"Win32_Security",
"Win32_System_Com",
"Win32_System_Console",
"Win32_System_DataExchange",
"Win32_System_Diagnostics_Debug",
"Win32_System_Memory",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_UI_Controls",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell_PropertiesSystem",
"Win32_UI_TextServices",
"Win32_UI_WindowsAndMessaging",
"Win32_NetworkManagement_WiFi",
] }