Files
Whitecat18 ff0d2cbb21 Dyncvoke
2026-06-06 17:08:16 +05:30

30 lines
678 B
TOML

[package]
name = "dyncvoke_core"
version = "0.1.0"
edition = "2021"
[profile.release]
strip = true
[dependencies]
data = { path = "../data" }
libc = { version = "0.2.182", default-features = false }
[target.'cfg(target_arch = "x86_64")'.dependencies]
nanorand = { version = "0.8.0", default-features = false, features = ["wyrand"] }
[dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System",
"Win32_System_IO",
"Win32_System_Kernel",
"Win32_System_Memory",
"Win32_System_ProcessStatus",
"Win32_System_SystemInformation",
"Win32_System_Diagnostics_Debug",
"Win32_System_Threading"
]