vstorage 0.2.1

Common API for various icalendar/vcard storages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
check:
	cargo fetch --locked  # make sure lockfile is up to date
	cargo check --all
	cargo fmt --check
	cargo clippy --all-targets --all
	cargo test --workspace  # includes examples and doctests
	cargo doc  # fails on broken links
	cargo-deny check

	# test with optional JMAP feature
	cargo check --all --features jmap
	cargo clippy --all-targets --all --features jmap
	cargo test --workspace --features jmap

clean:
	cargo clean