[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*