pgn_parser 0.2.1

Parser for educational purpose
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
format:
	cargo fmt && cargo clippy

test:
	cargo test

commit-and-push:
	git add .
	git commit -m "Update parser version"
	git push origin

publish:
	cargo publish

release: format test commit-and-push publish