blobfisch/Cargo.toml
Lukas Langrock 99fcfe68b7
Some checks are pending
Continuous Integration / Build & Test (push) Waiting to run
basic templating system
2024-06-28 23:43:04 +02:00

16 lines
480 B
TOML

[package]
name = "blobfisch"
version = "0.1.0"
edition = "2021"
[dependencies]
rocket = { version = "0.5.0", features = ["json"] }
rocket_dyn_templates = { version = "0.1.0", features = ["handlebars"] }
[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*