Some checks failed
Build MIPS Binary / build (push) Failing after 1m28s
- Update leptos-use from 0.15 to 0.16 for reactive_graph compatibility - Fix web-sys ProgressElement -> ProgressEvent feature - Resolve closure ownership issues in context_menu.rs and statusbar.rs - Update Cargo dependencies for stable compilation
21 lines
536 B
TOML
21 lines
536 B
TOML
[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" }
|