inkhaven 1.2.4

Inkhaven — TUI literary work editor for Typst books
SOURCES=$(wildcard src/*.rs)


all: $(SOURCES) Makefile
	cargo build

rebuild:
	make clean
	make all
release:
	cargo build --release

test:
	cargo test -- --show-output

clean:
	cargo clean
	cargo update

commit:
	aic -ac
	git push