-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 714 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 714 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
[package]
name = "kopi"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
winrt-notification = "0.5.1"
eframe = "0.16.0" # Gives us egui, epi and web+native backends
serde = { version = "1", features = ["derive"], optional = true }
[dependencies.windows]
version = "0.30"
features = [
"alloc",
"Win32_Foundation",
"Win32_System_Power",
"Win32_System_Registry",
"Win32_System_Com",
"Win32_System_SystemServices",
"Win32_Foundation",
# "Foundation",
# "UI_Xaml_Controls",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Shell",
]