-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (45 loc) · 1.21 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
[workspace]
members = ["injector", "screen_recorder", "glad-gl", "shmem", "load_library_getter", "shared_defs"]
resolver = "2"
[workspace.dependencies]
glad-gl = { path = "./glad-gl" }
shmem = { path = "./shmem"}
[workspace.dependencies.windows]
version = "0.62"
default-features = false
features = [
"Win32_Security",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_Graphics_Gdi",
"Win32_System_Console",
"Win32_System_Diagnostics_Debug",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
"Win32_System_Threading",
"Win32_System_Memory",
"Win32_System_ProcessStatus",
"Win32_Graphics_Dwm",
"Win32_Graphics_OpenGL",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D_Fxc",
"Win32_Graphics_Direct3D9",
"Win32_Graphics_Direct3D10",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Direct3D12",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Storage",
"Win32_Storage_FileSystem",
"Win32_System_WindowsProgramming"
]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[profile.release-lto]
inherits = "release"
debug-assertions = false
lto = "fat"
codegen-units = 1
strip = true