omake 0.1.4

A Rust implementation of make.
Documentation
[[bin]]
name = "omake"
path = "src/main.rs"
required-features = ["bin"]
[dependencies.clap]
features = ["derive"]
optional = true
version = "4"

[dependencies.const_format]
optional = true
version = "0.2"

[features]
bin = ["clap", "const_format"]
default = ["bin"]

[lib]
path = "src/lib/_lib.rs"

[package]
authors = ["Gregory N. Schmit <schmitgreg@gmail.com>"]
categories = ["command-line-utilities", "development-tools", "development-tools::build-utils"]
description = "A Rust implementation of make."
edition = "2021"
keywords = ["make", "oxidized", "development", "build"]
license = "MIT"
name = "omake"
readme = "README.md"
repository = "https://github.com/gregschmit/omake"
resolver = "2"
version = "0.1.4"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true