kdex-entitlements 0.2.0

A simple, robust entitlements checking library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: all
all: test

.PHONY: test
test: ## Run Rust tests.
	cargo test

.PHONY: coverage
coverage: ## Run Rust tests with coverage (requires cargo-tarpaulin or similar).
	@echo "Coverage not yet implemented for Rust"

.PHONY: lint
lint: ## Run Rust linter (clippy).
	cargo clippy -- -D warnings