t-ron 0.26.3

MCP security monitor — tool call auditing, rate limiting, injection detection, and anomaly analysis
Documentation
.PHONY: check fmt clippy test bench audit deny build doc coverage clean

# Run all CI checks locally
check: fmt clippy test

# Format check
fmt:
	cargo fmt --all -- --check

# Lint (zero warnings)
clippy:
	cargo clippy --all-targets -- -D warnings

# Run test suite
test:
	cargo test

# Run benchmarks (criterion)
bench:
	cargo bench

# Security audit
audit:
	cargo audit

# Supply-chain checks (license + advisory + source)
deny:
	cargo deny check

# Build release
build:
	cargo build --release

# Generate documentation
doc:
	cargo doc --no-deps

# Code coverage report
coverage:
	cargo llvm-cov --html

# Clean build artifacts
clean:
	cargo clean