skymath 0.3.2

Planning-grade astronomy math for astrophotography tooling: angles, equatorial coordinates, sexagesimal parsing and formatting, angular separation and offsets, precession, MJD/JD/calendar conversions, sidereal time, and observer-local quantities (alt-az, airmass, transit).
Documentation
# skymath 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