Files
vibetorrent/Cargo.toml
spinline 3632a578e1
Some checks failed
Build MIPS Binary / build (push) Has been cancelled
build: CI/CD ve optimizasyon süreci en sade ve güvenilir haline getirildi
2026-02-08 18:41:40 +03:00

20 lines
535 B
TOML
Raw Permalink 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
[patch.crates-io]
coarsetime = { path = "third_party/coarsetime" }