release:
	cargo build --release

install: release
	cp target/release/mte ~/.local/bin/

uninstall:
	touch ~/.local/bin/mte
	rm ~/.local/bin/mte

format:
	cargo +nightly fmt

test-featureflags:
	cargo build --no-default-features --features "lang-en"
	cargo build --no-default-features --features "lang-it"