140 releases (51 stable)

1.40.0 Mar 9, 2025
1.38.0 Dec 10, 2024
1.37.0 Nov 20, 2024
1.33.0 Jul 31, 2024
0.2.23 Nov 18, 2016

#40 in Command line utilities

Download history 4521/week @ 2024-12-26 7402/week @ 2025-01-02 9414/week @ 2025-01-09 10263/week @ 2025-01-16 13190/week @ 2025-01-23 10480/week @ 2025-01-30 8716/week @ 2025-02-06 8296/week @ 2025-02-13 8910/week @ 2025-02-20 8660/week @ 2025-02-27 11124/week @ 2025-03-06 14255/week @ 2025-03-13 12283/week @ 2025-03-20 12585/week @ 2025-03-27 25806/week @ 2025-04-03 13207/week @ 2025-04-10

67,301 downloads per month
Used in 6 crates (5 directly)

CC0 license

510KB
18K SLoC

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.


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.

Dependencies

~15–27MB
~425K SLoC