pub-just

Crates.iopub-just
lib.rspub-just
version1.37.0
sourcesrc
created_at2024-11-24 17:15:37.653621
updated_at2024-11-24 17:15:37.653621
description🤖 Just a command runner
homepagehttps://github.com/casey/just
repositoryhttps://github.com/casey/just
max_upload_size
id1459415
size1,172,426
TKirishima (tkr-sh)

documentation

README

An actually usable crate for just.

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: 1385

cargo fmt