Files
vibetorrent/Cargo.toml
spinline 40be58f2fc
All checks were successful
Build MIPS Binary / build (push) Successful in 4m30s
perf: backend derleme süreci kök dizine taşınarak workspace optimizasyonları aktif edildi
2026-02-08 18:10:09 +03:00

16 lines
385 B
TOML

[workspace]
members = ["backend", "frontend", "shared"]
resolver = "2"
# Optimize for size (aggressive)
[profile.release]
opt-level = "z"
lto = "fat" # Full LTO (En iyisi)
codegen-units = 1
panic = "abort"
strip = "symbols" # Sembolleri temizle
incremental = false # Incremental build'i kapat (Boyut için daha iyi)
[patch.crates-io]
coarsetime = { path = "third_party/coarsetime" }