Files
vibetorrent/Cargo.toml
spinline 94bc7cb91d
All checks were successful
Build MIPS Binary / build (push) Successful in 5m18s
fix: patch coarsetime with portable-atomic for MIPS AtomicU64 support
2026-02-10 01:29:06 +03:00

22 lines
533 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
[patch.crates-io]
coarsetime = { path = "patches/coarsetime" }