gridgraph_rs 0.1.0

Rust rewrite of GRIDGRAPH, a min-cost flow grid graph generator
Documentation
#!/usr/bin/env -S just --justfile

set shell := ["bash", "-euo", "pipefail", "-c"]

# Core workflows
fmt:
    cargo fmt --all

fmt-check:
    cargo fmt --all -- --check

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

test:
    cargo test

build profile='release':
    cargo build --workspace --profile {{ profile }}

clean:
    cargo clean

ci: fmt-check clippy test