ucf 0.1.7

A universal code formatter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
compile:
	cargo build --release --target x86_64-pc-windows-gnu
	cargo build --release --target x86_64-unknown-linux-gnu
	cargo build --release --target x86_64-unknown-linux-musl
install:
	cargo install --path .
format:
	# Temporary solution (until ucf supports directories)
	find . -type f -name \*.rs -exec ucf "{}" \;
release:
	cargo build --release --target x86_64-pc-windows-gnu
	cargo build --release --target x86_64-unknown-linux-gnu
	cargo build --release --target x86_64-unknown-linux-musl