axum-conf 0.3.7

A library to simplify the use of Axum, Tokio and Postgres together using configuration. It comes with batteries included and many features can be feature activated.
Documentation
test:
	cargo test --all-features

bench:
	cargo bench --all-features

test-minimal:
	cargo test --lib

test-production:
	cargo test --features production

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

docs:
	cargo doc --no-deps --open

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

audit:
	cargo audit

coverage:
	cargo llvm-cov --html --no-cfg-coverage --open --all-features -- tests

readme:
	cargo readme > README.md

publish:
	cargo publish