* initial migration * barebones profiles * Finish profiles * Add back file watcher * UI support progress * Finish most of cache * Fix options page * Fix forge, finish modrinth auth * Accounts, process cache * Run SQLX prepare * Finish * Run lint + actions * Fix version to be compat with windows * fix lint * actually fix lint * actually fix lint again
19 lines
495 B
TOML
19 lines
495 B
TOML
[workspace]
|
|
resolver = '2'
|
|
members = [
|
|
'./packages/app-lib',
|
|
'./apps/app-playground',
|
|
'./apps/app'
|
|
]
|
|
|
|
# Optimize for speed and reduce size on release builds
|
|
[profile.release]
|
|
panic = "abort" # Strip expensive panic clean-up logic
|
|
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
|
|
lto = true # Enables link to optimizations
|
|
opt-level = "s" # Optimize for binary size
|
|
strip = true # Remove debug symbols
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|