mirror of
https://github.com/zhom/banderole.git
synced 2026-05-31 20:01:40 +02:00
22 lines
562 B
TOML
22 lines
562 B
TOML
[package]
|
|
name = "banderole-app"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
directories = "6"
|
|
zip = "4"
|
|
serde_json = "1.0"
|
|
|
|
[build-dependencies]
|
|
# No build dependencies needed - data is embedded at compile time
|
|
|
|
# Optimize for size and performance
|
|
[profile.release]
|
|
opt-level = "z" # Optimize for size
|
|
lto = true # Enable Link Time Optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations
|
|
panic = "abort" # Abort on panic (smaller binary)
|
|
strip = true # Strip symbols from binary
|