zotero 0.0.3-alpha

Communicate with Zotero API
Documentation
test:
	cargo test

build-doc:
	cargo doc

open-doc:
	cargo doc --open

serve-doc:
	cargo watch -s 'cargo doc --no-deps && browser-sync start --ss target/doc/zotero -s target/doc --directory --no-open'

coverage: clean
	cargo kcov --all -- --exclude-path=src/data_structure/item/item_data --exclude-pattern=/.cargo,src/main.rs

open-coverage: ./target/cov/index.html
	xdg-open ./target/cov/index.html

clean:
	cargo clean