ratz 0.0.1

Performant, convenient and idiomatic FP for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
PROJECT_DIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))

.PHONY: fmt fmt-haskell fmt-nix

fmt: fmt-rs fmt-nix

fmt-rs:
	rustfmt $$(find ${PROJECT_DIR} -type f -name '*.rs')

fmt-nix:
	nixfmt $$(find ${PROJECT_DIR} -type f -name '*.nix')