[package] name = "raid_manager" version = "0.1.0" edition = "2021" [dependencies] rocket = {version = "0.5.0-rc.2", features = ["json"]} regex = "1" lazy_static = "1.4.0" include_dir = "0.7.3" rust-embed = "6.4.2" versions = "4.1.0" [features] static = [] [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*