just

Crates.iojust
lib.rsjust
version1.30.1
sourcesrc
created_at2016-10-23 05:52:52.761548
updated_at2024-07-14 21:29:56.339226
description🤖 Just a command runner
homepagehttps://github.com/casey/just
repositoryhttps://github.com/casey/just
max_upload_size
id6950
size1,096,631
maintainers (github:rust-bus:maintainers)

documentation

README

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.

Commit count: 1260

cargo fmt