libfreemkv 0.13.43

Open source raw disc access library for optical drives
Documentation
# libfreemkv — local dev helper.
# Mirrors the cross-crate scripts in freemkv-private/scripts/test-all.sh
# but scoped to this single crate.

.PHONY: test build check ci clean

test:
	cargo test --tests

build:
	cargo build --release

check:
	cargo fmt --check
	cargo clippy --all-targets -- -D warnings

ci: check build test

clean:
	cargo clean