hk4e-patch/Cargo.toml

32 lines
676 B
TOML
Raw Normal View History

2024-04-10 19:35:01 +00:00
[package]
name = "hk4e-patch"
version = "0.1.0"
edition = "2021"
[lib]
2024-08-29 22:30:44 +00:00
name = "ext"
2024-04-10 19:35:01 +00:00
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0.81"
ilhook = "2.1.0"
lazy_static = "1.4.0"
libloading = "0.8.3"
windows = { version = "0.54.0", features = [
"Win32_Foundation",
"Win32_System_SystemServices",
"Win32_System_LibraryLoader",
"Win32_System_Console",
"Win32_System_Threading",
"Win32_System_Memory",
] }
[build-dependencies]
cc = "1.0.90"
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true # Link-time optimization.
opt-level = 3 # Optimization level 3.
codegen-units = 1 # Maximum size reduction optimizations.