[package] name = "min-sized-rust" version = "0.1.0" authors = ["johnthagen "] license-file = "LICENSE.txt" [dependencies] [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 # Automatically strip symbols from the binary.