launcher/Cargo.toml

19 lines
493 B
TOML
Raw Permalink Normal View History

2024-10-01 18:34:25 +00:00
[workspace]
resolver = "2"
members = ["injector", "launcher"]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
injector = { path = "injector" }
log = "0.4.22"
serde = {version = "1.0.210", features = ["derive"]}
thiserror = "1.0.64"
[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.