texcore 0.7.2

Create LaTeX documents using native Rust types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
RCMD = cargo publish
initial_commit:
	git add -A
	git commit -m "Initial work on v$(VERS)"
	git push
git:
	git add -A
	git commit -m "$(MSG)"
	git push

publish:
	cd texcore_derive && $(RCMD)
	cd texcore_traits && $(RCMD)
	cargo release --execute

all:
	make git
	make publish