28 lines
900 B
TOML
28 lines
900 B
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"injector",
|
|
"payload",
|
|
"generator",
|
|
"reflective_loader",
|
|
"common"
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = "z" # Optimize for size, but also turn off loop vectorization.
|
|
lto = true # Enable Link Time Optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
panic = "abort" # Abort on panic
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
[profile.dev]
|
|
opt-level = "z" # Optimize for size, but also turn off loop vectorization.
|
|
lto = true # Enable Link Time Optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
panic = "abort" # Abort on panic
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
# More information about the profile attributes: https://doc.rust-lang.org/cargo/reference/profiles.html
|
|
|