-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (48 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
54 lines (48 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
[package]
name = "KiUserExceptionDispatcherStepOver"
version = "0.1.0"
edition = "2024"
[dependencies]
dinvk = "0.3.1"
[dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Memory",
"Win32_System_Diagnostics_Debug",
"Win32_System_SystemServices",
"Win32_UI_Shell",
"Win32_Graphics_Gdi",
"Win32_System_WindowsProgramming",
"Win32_System_LibraryLoader",
"Win32_System_SystemInformation",
"Win32_Globalization",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Console",
"Win32_System_Kernel",
"Win32_System_Pipes",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_Networking_ActiveDirectory",
"Win32_Security_Authentication_Identity",
"Wdk_Foundation",
"Wdk_System_Memory"
]
[features]
# default = ["debug"]
debug = []
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.
[profile.dev]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.