You've already forked coldloader
mirror of
https://github.com/denuvosanctuary/coldloader.git
synced 2026-04-29 15:47:09 -07:00
4c48d38d7d
* Code cleanup and fixes * Added x86 support
25 lines
495 B
TOML
25 lines
495 B
TOML
[package]
|
|
name = "coldloader"
|
|
version = "1.3.0"
|
|
edition = "2024"
|
|
authors = ["NotAndreh"]
|
|
|
|
[lib]
|
|
name = "coldloader"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.102"
|
|
log = { version = "0.4.29", features = ["release_max_level_off"] }
|
|
log4rs = "1.4.0"
|
|
rust-ini = "0.21.3"
|
|
winapi = { version = "0.3.9", features = ["minwindef", "libloaderapi", "processthreadsapi", "winuser"] }
|
|
winreg = "0.56.0"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|