target-match 0.1.0

Pure-Rust, dependency-light target identification for astrophotography: given a telescope pointing and field of view, rank which catalogued sky objects fall on the frame — by sky position, never by name.
Documentation
# target-match task runner. Run `just` to list recipes.

# Show available recipes
default:
    @just --list

# Build the crate
build:
    cargo build

# Run the test suite
test:
    cargo test

# Lint with clippy (warnings treated as errors)
lint:
    cargo clippy --all-targets --all-features -- -D warnings

# Format all sources
fmt:
    cargo fmt

# Check formatting without writing changes
fmt-check:
    cargo fmt --check

# Type/borrow-check without producing a binary
check:
    cargo check --all-targets

# Build the API docs
doc:
    cargo doc --no-deps

# Full local gate: format check, lint, test
verify: fmt-check lint test

# Remove build artifacts
clean:
    cargo clean