libfreemkv 1.0.0-rc.4

Open source raw disc access library for optical drives
Documentation
# libfreemkv — local dev helper.
# Mirrors the workspace-wide CI checks 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