whatsyoursign 0.1.2

A tool to inspect the signature of a file


.PHONY: build clean test lint install

build:
	cargo build --release

clean:
	cargo clean

test:
	cargo test

lint:
	cargo clippy --fix --allow-dirty -- -W clippy::all -W clippy::pedantic -W clippy::nursery -W clippy::cargo
	cargo fmt --all -- --check

install: build
	sudo install -m 755 "target/release/whatsyoursign" "/usr/local/bin/whatsyoursign"