19 lines
468 B
TOML
19 lines
468 B
TOML
[package]
|
|
name = "runner"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[profile.release]
|
|
# source: https://github.com/johnthagen/min-sized-rust
|
|
panic = "abort"
|
|
opt-level = "z"
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
windows-sys = {version="0.59.0", features=["Win32_System_Memory", "Win32_System_LibraryLoader", "Win32_System_Diagnostics_ToolHelp", "Win32_System_Threading", "Win32_System_Diagnostics_Debug", "Win32_Security"]}
|