Improve compile perf

This commit is contained in:
Andras Schmelczer 2026-02-01 08:50:03 +00:00
parent 0b0a655599
commit a50e092032
2 changed files with 129 additions and 0 deletions

View file

@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4", features = ["derive"] }
axum = "0.8"
tower-http = { version = "0.6", features = ["cors", "fs", "compression-gzip", "trace"] }
tokio = { version = "1", features = ["full"] }
@ -16,6 +17,13 @@ rustc-hash = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
lto = "thin"
[profile.production]
inherits = "release"
lto = true