135 releases (46 stable)

1.35.0 Aug 28, 2024
1.33.0 Jul 31, 2024
1.25.2 Mar 11, 2024
1.21.0 Dec 29, 2023
0.2.23 Nov 18, 2016

#78 in Development tools

Download history 8443/week @ 2024-05-21 7503/week @ 2024-05-28 7548/week @ 2024-06-04 8219/week @ 2024-06-11 6213/week @ 2024-06-18 5103/week @ 2024-06-25 6372/week @ 2024-07-02 6840/week @ 2024-07-09 6782/week @ 2024-07-16 6801/week @ 2024-07-23 10008/week @ 2024-07-30 6354/week @ 2024-08-06 5772/week @ 2024-08-13 5983/week @ 2024-08-20 6925/week @ 2024-08-27 4876/week @ 2024-09-03

24,674 downloads per month
Used in todors

CC0 license

485KB
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

~13–24MB
~372K SLoC