blobfisch/Cargo.toml

16 lines
480 B
TOML
Raw Permalink Normal View History

2024-05-17 14:17:11 +02:00
[package]
name = "blobfisch"
version = "0.1.0"
edition = "2021"
[dependencies]
rocket = { version = "0.5.0", features = ["json"] }
2024-06-28 23:43:04 +02:00
rocket_dyn_templates = { version = "0.1.0", features = ["handlebars"] }
2024-05-17 14:17:11 +02:00
[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
strip = true # Strip symbols from binary*