feat: configure performance for the rust porttion

This commit is contained in:
Jet 2026-03-26 18:36:51 -07:00
parent 5356e2dbb4
commit c55413c47f
No known key found for this signature in database
4 changed files with 14 additions and 7 deletions

View file

@ -13,3 +13,14 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["cors"] }
[profile.dev]
debug = "line-tables-only"
split-debuginfo = "unpacked"
[profile.release]
codegen-units = 1
debug = 0
lto = "thin"
panic = "abort"
strip = "symbols"