_:
  @just --list

bindgen:
  cbindgen --config cbindgen.toml --crate dotalib --lang c --output dotalib.h

build: bindgen
  cargo build
  gcc -Ltarget/debug/ -ldota test.c

