aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 3df8c924e696274421da801806e27d7948a269de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[workspace]
members = [
	"libs/zora-rs",
	"clients/www/src-tauri"
]
resolver = "2"
package.authors = ["Matt Strapp <matt@mattstrapp.net>"]
package.license = "MIT"

[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