1# you can download just [here](https://github.com/casey/just) 2 3default: build 4 5build: 6 cargo build 7 8run: 9 cargo run 10 11nix-build: 12 nix build 13 14nix-run: 15 nix run 16 17nix-docker: 18 nix build .#docker