perf: optimize release build

This commit is contained in:
2026-05-31 00:59:59 +02:00
parent 978350ffdf
commit 45a8da1053
+7
View File
@@ -11,3 +11,10 @@ serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149" serde_json = "1.0.149"
tokio = { version = "1.52.3", features = ["full"] } tokio = { version = "1.52.3", features = ["full"] }
tower-http = { version = "0.6.11", features = ["fs"] } tower-http = { version = "0.6.11", features = ["fs"] }
[profile.release]
codegen-units = 1
opt-level = 3
lto = true
strip = "symbols"
panic = "abort"