138 releases (49 stable)

1.38.0 Dec 10, 2024
1.37.0 Nov 20, 2024
1.36.0 Sep 30, 2024
1.33.0 Jul 31, 2024
0.2.23 Nov 18, 2016

#49 in Development tools

Download history 6729/week @ 2024-09-27 6486/week @ 2024-10-04 7155/week @ 2024-10-11 8005/week @ 2024-10-18 7300/week @ 2024-10-25 8523/week @ 2024-11-01 8100/week @ 2024-11-08 7920/week @ 2024-11-15 7596/week @ 2024-11-22 9661/week @ 2024-11-29 9257/week @ 2024-12-06 7986/week @ 2024-12-13 5750/week @ 2024-12-20 4942/week @ 2024-12-27 7850/week @ 2025-01-03 7929/week @ 2025-01-10

27,917 downloads per month
Used in 4 crates

CC0 license

500KB
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–25MB
~398K SLoC