| Crates.io | just |
| lib.rs | just |
| version | 1.42.4 |
| created_at | 2016-10-23 05:52:52.761548+00 |
| updated_at | 2025-07-24 23:27:10.494151+00 |
| description | 🤖 Just a command runner |
| homepage | https://github.com/casey/just |
| repository | https://github.com/casey/just |
| max_upload_size | |
| id | 6950 |
| size | 1,274,594 |
just is a handy way to save and run project-specific commands.
Commands are stored in a file called justfile or Justfile with syntax
inspired by make:
build:
cc *.c -o main
# test everything
test-all: build
./test --all
# run a specific test
test TEST: build
./test --test {{TEST}}
just produces detailed error messages and avoids make's idiosyncrasies, so
debugging a justfile is easier and less surprising than debugging a makefile.
It works on all operating systems supported by Rust.
Read more on GitHub.