Files
banderole/template/Cargo.toml
T

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