-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (54 loc) · 1.49 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (54 loc) · 1.49 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
[package]
name = "lcdsirplus"
version = "0.3.0"
edition = "2021"
description = "Windows dashboard for the Logitech G13"
license = "MIT"
[[bin]]
name = "LCDSirPlus"
path = "src/main.rs"
[dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Cryptography",
"Win32_Security_Cryptography_Catalog",
"Win32_Security_Cryptography_Sip",
"Win32_Security_WinTrust",
"Win32_System_LibraryLoader",
"Win32_Devices_DeviceAndDriverInstallation",
"Win32_Devices_HumanInterfaceDevice",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Threading",
"Win32_System_Pipes",
"Win32_System_RemoteDesktop",
"Win32_System_Registry",
"Win32_System_WindowsProgramming",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Diagnostics_Etw",
"Win32_System_SystemInformation",
"Win32_System_Performance",
"Win32_System_Power",
"Win32_System_Memory",
"Win32_System_Console",
"Win32_Graphics_Gdi",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Shell",
"Win32_Globalization",
"Win32_Media_Audio",
"Win32_Media_Audio_Endpoints",
"Win32_System_Com",
"Win32_NetworkManagement_IpHelper",
"Win32_NetworkManagement_Ndis",
"Win32_Networking_WinSock",
"Win32_Networking_WinHttp",
] }
[build-dependencies]
winres = { version = "=0.1.12", path = "third_party/winres" }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
opt-level = "z"