2024-01-30 19:52:36 +00:00
|
|
|
workspace = { members = ["gdkeinj"] }
|
2022-12-25 12:45:25 +00:00
|
|
|
[package]
|
|
|
|
name = "gdke"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-02-16 20:17:43 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
strip = true
|
|
|
|
opt-level = "z"
|
|
|
|
codegen-units = 1
|
2023-03-21 00:26:29 +00:00
|
|
|
|
|
|
|
[profile.debuga]
|
|
|
|
inherits = "release"
|
|
|
|
debug = true
|
|
|
|
strip = false
|
2022-12-25 12:45:25 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2024-01-30 19:52:36 +00:00
|
|
|
# [workspace]
|
|
|
|
# members = ["gdke-gui"]
|
2023-03-21 00:26:29 +00:00
|
|
|
|
2023-03-29 17:51:14 +00:00
|
|
|
[dependencies]
|
2024-01-30 20:38:15 +00:00
|
|
|
anyhow = "*"
|
2024-01-30 19:52:36 +00:00
|
|
|
windows = { features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_System",
|
2024-01-30 20:20:04 +00:00
|
|
|
"Wdk",
|
|
|
|
"Wdk_System",
|
|
|
|
"Wdk_System_Threading",
|
2024-01-30 19:52:36 +00:00
|
|
|
"Win32_System_Threading",
|
|
|
|
"Win32_System_Diagnostics",
|
|
|
|
"Win32_System_Diagnostics_Debug",
|
|
|
|
"Win32_System_SystemInformation",
|
|
|
|
"Win32_System_SystemServices",
|
|
|
|
"Win32_System_Kernel",
|
|
|
|
"Win32_System_ProcessStatus",
|
|
|
|
"Win32_Security",
|
|
|
|
], version = "0.52" }
|
2024-01-30 20:20:04 +00:00
|
|
|
dll-syringe = "*"
|
2024-02-11 17:43:25 +00:00
|
|
|
poggers = { version = "*", git = "https://github.com/pozm/poggers.git" }
|