wicked-waifus-win-patch/Cargo.toml

36 lines
897 B
TOML
Raw Normal View History

2024-08-27 22:41:40 +00:00
[package]
2024-11-01 19:40:52 +00:00
name = "wicked-waifus-win-patch"
2024-08-27 22:41:40 +00:00
version = "0.1.0"
edition = "2021"
[lib]
2024-11-01 19:40:52 +00:00
name = "wicked_waifus_win"
2024-08-27 22:41:40 +00:00
crate-type = ["cdylib"]
2024-09-27 19:22:11 +00:00
[features]
2024-10-11 13:25:10 +00:00
cn_beta_1_4_0 = []
2024-09-27 19:22:11 +00:00
cn_beta_1_3_0 = []
2024-09-30 19:54:29 +00:00
cn_live_1_3_0 = []
2024-09-27 19:22:11 +00:00
os_live_1_3_0 = []
2024-09-30 19:54:29 +00:00
enable-sdk = []
2024-11-02 00:40:31 +00:00
only-sig-bypass = []
regular = ["dep:regex", "dep:widestring"]
2024-09-27 19:22:11 +00:00
2024-08-27 22:41:40 +00:00
[dependencies]
2024-09-27 19:22:11 +00:00
ilhook = "2.1.1"
2024-11-02 00:40:31 +00:00
interceptor-rs = { git = "https://git.xeondev.com/xavo95/interceptor-rs.git" }
regex = {version = "1.11.1", optional = true}
widestring = {version = "1.1.0", optional = true}
2024-09-27 19:22:11 +00:00
windows = { version = "0.58.0", features = [
2024-08-27 22:41:40 +00:00
"Win32_Foundation",
"Win32_System_LibraryLoader",
"Win32_System_SystemServices",
"Win32_System_Console",
] }
[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.