mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-01 20:45:57 +03:00
13 lines
342 B
TOML
13 lines
342 B
TOML
[workspace]
|
|
members = [
|
|
"packages/butler",
|
|
"packages/tauri",
|
|
]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
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
|
|
debug = true # Enable debug symbols, for sentry
|