corries 0.6.2

Library/framework for 1D-hydrodynamics simulations using Riemann solvers
Documentation
clean:
  cargo clean

format:
  rustfmt ./**/*.rs

clippy:
  cargo clippy

doc:
  cargo doc --document-private-items

build: format clippy doc
  cargo build -r

test: format clippy doc
  cargo test --doc
  cargo nextest run -E 'binary(corries)'
  cargo nextest run -r -E 'kind(test)'

update:
  nix flake update
  cargo update

bench:
  cargo bench