libjmap 0.1.1

JMAP client implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2025 Hugo Osvaldo Barrera
#
# SPDX-License-Identifier: ISC

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 -- --test-threads=1  # includes examples and doctests
	cargo doc  # fails on broken links
	cargo-deny check

clean:
	cargo clean