Testing workflow
Some checks failed
Multi-Platform Release Build / detect-architecture (push) Has been cancelled
Multi-Platform Release Build / build (false, native) (push) Has been cancelled
Multi-Platform Release Build / build (true, aarch64-linux-gnu-gcc, aarch64-unknown-linux-gnu) (push) Has been cancelled
Multi-Platform Release Build / build (true, arm-linux-gnueabihf-gcc, armv7-unknown-linux-gnueabihf) (push) Has been cancelled
Multi-Platform Release Build / build (true, x86_64-linux-gnu-gcc, x86_64-unknown-linux-gnu) (push) Has been cancelled
Multi-Platform Release Build / build (true, x86_64-w64-mingw32-gcc, x86_64-pc-windows-gnu) (push) Has been cancelled
Multi-Platform Release Build / create-release (push) Has been cancelled

This commit is contained in:
Marco De Araujo 2025-12-30 07:35:50 -04:00
parent 414609b6e0
commit f6640ede13
3 changed files with 255 additions and 2 deletions

View file

@ -19,5 +19,26 @@ crossterm = "0.29.0"
chrono = "0.4.42"
rayon = "1.11.0"
[profile.release]
[features]
default = []
production = []
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
debug = false
[profile.release-min]
inherits = "release"
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"