todolist 1.0.0-alpha.1

Rust library to manage todo list
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
publish:
	cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }} && cargo publish

ci: fmt-check test clippy publish-dry-run

fmt-check:
	cargo fmt --all -- --check

test:
	cargo test --all-features

clippy:
	cargo clippy --all-features -- -D warnings

publish-dry-run:
	cargo publish --dry-run