28 lines
539 B
Rust
28 lines
539 B
Rust
|
[workspace]
|
||
|
resolver = "2"
|
||
|
members = [
|
||
|
"app",
|
||
|
"shellcode",
|
||
|
"codeloader",
|
||
|
"shellcode-util",
|
||
|
]
|
||
|
|
||
|
[workspace.dependencies]
|
||
|
region = "3.0.2"
|
||
|
utf16_lit = "2.0.2"
|
||
|
|
||
|
[workspace.dependencies.windows-sys]
|
||
|
version = "0.59.0"
|
||
|
features = [
|
||
|
"Win32",
|
||
|
"Win32_Foundation",
|
||
|
"Win32_System",
|
||
|
"Win32_System_Diagnostics",
|
||
|
"Win32_System_Diagnostics_Debug",
|
||
|
"Win32_System_Kernel",
|
||
|
"Win32_System_SystemInformation",
|
||
|
"Win32_System_SystemServices",
|
||
|
"Win32_System_Threading",
|
||
|
"Win32_System_WindowsProgramming"
|
||
|
]
|