[package] name = "oxidized_make" version = "0.0.0" edition = "2021" description = "A Rust implementation of make." authors = ["Gregory N. Schmit "] license = "MIT" repository = "https://github.com/gregschmit/omake" categories = ["command-line-utilities", "development-tools", "development-tools::build-utils"] # Optimize for a small binary. [profile.release] opt-level = "z" lto = true codegen-units = 1 panic = "abort" strip = true