22 lines
654 B
TOML
22 lines
654 B
TOML
[package]
|
|
name = "sysCRT"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
{{DLL_FORMAT}}
|
|
|
|
[dependencies]
|
|
dyncvoke = { git = "https://codeberg.org/smukx/Dyncvoke.git" }
|
|
sysinfo = "0.38"
|
|
ntapi = { version = "0.4", features = ["impl-default"] }
|
|
winapi = { version = "0.3", features = ["ntdef", "ntstatus", "impl-default", "winnt", "libloaderapi", "processthreadsapi", "debugapi", "errhandlingapi", "sysinfoapi"] }
|
|
{{DEPENDENCIES}}
|
|
|
|
[profile.release]
|
|
strip = true # Automatically strip symbols from the binary.
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
lto = true |