137 releases (48 stable)

new 1.37.0 Nov 20, 2024
1.35.0 Aug 28, 2024
1.33.0 Jul 31, 2024
1.25.2 Mar 11, 2024
0.2.23 Nov 18, 2016

#51 in Development tools

Download history 8617/week @ 2024-08-01 6223/week @ 2024-08-08 5467/week @ 2024-08-15 6040/week @ 2024-08-22 6778/week @ 2024-08-29 6993/week @ 2024-09-05 5788/week @ 2024-09-12 6647/week @ 2024-09-19 6847/week @ 2024-09-26 6841/week @ 2024-10-03 6923/week @ 2024-10-10 7766/week @ 2024-10-17 7265/week @ 2024-10-24 8284/week @ 2024-10-31 8754/week @ 2024-11-07 5356/week @ 2024-11-14

31,316 downloads per month
Used in 4 crates

CC0 license

495KB
17K SLoC

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–25MB
~396K SLoC