nodio 0.4.1

Ergonomic graph data storage with queries over relations
Documentation
list:
  just --list

format:
  cargo fmt --all

build:
  cargo build --all --all-features

test:
  cargo test --all --all-features
  cargo test --tests --all --all-features

miri:
  cargo +nightly miri test --manifest-path ./Cargo.toml

clippy:
  cargo clippy --all --all-features
  cargo clippy --tests --all --all-features

checks:
  just format
  just build
  just clippy
  just test
  just miri

clean:
  find . -name target -type d -exec rm -r {} +
  just remove-lockfiles

remove-lockfiles:
  find . -name Cargo.lock -type f -exec rm {} +

list-outdated:
  cargo outdated -R -w

update:
  cargo update --manifest-path ./Cargo.toml --aggressive

publish:
  cargo publish --no-verify --manifest-path ./Cargo.toml