Files
vibetorrent/Cargo.toml
spinline 5e1f4b18c2
Some checks failed
Build MIPS Binary / build (push) Failing after 4m15s
refactor: migrate torrent/settings endpoints to Leptos Server Functions and remove third_party/coarsetime
2026-02-10 00:27:39 +03:00

19 lines
469 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[workspace]
members = ["backend", "frontend", "shared"]
resolver = "2"
[profile.release]
# En küçük binary boyutu
opt-level = "z"
# En derin kod temizliği (dead code elimination)
lto = "fat"
# En iyi optimizasyon için tek birim derleme
codegen-units = 1
# Hata izleme kodlarını atarak yer kazan
panic = "abort"
# Sembolleri ve hata ayıklama bilgilerini kesin sil
strip = true
# Artık (incremental) build'i kapat ki optimizasyon tam olsun
incremental = false