139 releases (50 stable)

1.39.0 Jan 22, 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

#54 in Development tools

Download history 7553/week @ 2024-10-26 8827/week @ 2024-11-02 7560/week @ 2024-11-09 8088/week @ 2024-11-16 7782/week @ 2024-11-23 9400/week @ 2024-11-30 9745/week @ 2024-12-07 7353/week @ 2024-12-14 5511/week @ 2024-12-21 5003/week @ 2024-12-28 8406/week @ 2025-01-04 10290/week @ 2025-01-11 10877/week @ 2025-01-18 12131/week @ 2025-01-25 9797/week @ 2025-02-01 9003/week @ 2025-02-08

43,614 downloads per month
Used in 4 crates

CC0 license

505KB
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 all operating systems supported by Rust.

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–26MB
~400K SLoC