You've already forked AstralRinth
forked from didirus/AstralRinth
* 0.8.5 fixes * Attempt to fix binary name * bump version + add nsis installmode * (temp) Use cargo version of tauri CLI * fix cli build * Fix build env var * Bump tauri version * remove old invalid installs * Fix old shortcuts + NSIS build
22 lines
651 B
TOML
22 lines
651 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 = "5840108" }
|
|
tauri = { git = "https://github.com/modrinth/tauri", rev = "5e29428" } |