-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (36 loc) · 953 Bytes
/
Cargo.toml
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
[package]
name = "win_global_gpu"
version = "1.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.75", features = [
"backtrace"
] }
pico-args = "0.5.0"
rustc-hash = "1.1.0"
uiautomation = "0.8.2"
windows = { version = "0.52.0", features = [
"Win32_System_Power",
"Win32_Foundation",
"Win32_System_SystemServices",
"Win32_UI_WindowsAndMessaging",
"Win32_System_LibraryLoader",
"Win32_Graphics_Gdi",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_IO",
"Win32_System_Ioctl",
"ApplicationModel",
"Foundation_Collections",
"Management_Deployment",
"ApplicationModel_Core",
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_UI_Shell",
"Win32_System_Console",
"Win32_System_Registry"
] }
winrt-toast = "0.1.1"
[build-dependencies]
winres = "0.1.12"