You've already forked AstralRinth
forked from didirus/AstralRinth
* Implement ads in desktop app * Finish ads * use git dep instead * attempt to fix linux build (temp) * bump version + lint * comment more * fix build * try to fix linux build * Fix crashing on windows * Fix icons not showing * Remove useless env vars * Actual linux build fix * Run fmt * Fix scrolling * fix clippy * bump version + fix localhost * rev linux build patch * update version num * update csp * update csp * update csp * Switch to mousewheel event
22 lines
581 B
TOML
22 lines
581 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
|
|
|
|
[patch.crates-io]
|
|
wry = { git = "https://github.com/modrinth/wry", rev = "23b0ee4" }
|