[package]
name = "makers"
version = "0.8.0"
authors = ["boringcactus / Melody Horn <melody@boringcactus.com>"]
edition = "2021"
description = "a POSIX-compatible make implemented in Rust"
readme = "README.md"
repository = "https://code.boringcactus.com/makers/"
license-file = "LICENSE.txt"
keywords = ["build", "make"]
categories = ["development-tools"]
[features]
default = ['full']
full = ['dirs', 'glob']
[dependencies]
clap = { version = "4.5.20", features = ["derive", "wrap_help"] }
color-eyre = "0.6.3"
dirs = { version = "5.0.1", optional = true }
env_logger = "0.11.5"
eyre = "0.6.12"
glob = { version = "0.3.1", optional = true }
lazy_static = "1.5.0"
log = "0.4.22"
nom = "7.1.3"
regex = "1.11.0"
[dev-dependencies]
tempfile = "3.13.0"