Enable some optimizations for the release profile

This commit is contained in:
Patrick Auernig 2023-08-07 22:42:13 +02:00
parent 65656f2e09
commit 23b5050811
2 changed files with 12 additions and 0 deletions

View File

@ -10,3 +10,11 @@ members = [
version = "0.1.0"
edition = "2021"
license-file = "LICENSE"
[profile.release]
opt-level = 3
codegen-units = 4
lto = "fat"
panic = "abort"
strip = "debuginfo"

View File

@ -5,6 +5,10 @@ edition.workspace = true
license-file.workspace = true
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
binrw = "0.11"
chrono = "0.4"