duck-template 0.1.9

A cli tool for generating files from a template just with a json file
# Makefile

.PHONY: all build test check format release

all: check format test build

build:
	cargo build

test:
	cargo test

check:
	cargo check

format:
	cargo +nightly fmt --all -- --config-path ./rustfmt.toml


release:
	cargo build --release