1 stable release
1.37.0 | Nov 24, 2024 |
---|
#1615 in Development tools
133 downloads per month
Used in 2 crates
495KB
17K
SLoC
An actually usable crate for just.
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 Linux, MacOS, and Windows.
Read more on GitHub.
lib.rs
:
just
is primarily used as a command-line binary, but does provide a
limited public library interface.
Please keep in mind that there are no semantic version guarantees for the library interface. It may break or change at any time.
Dependencies
~14–29MB
~399K SLoC