Metadata-Version: 2.4
Name: astral-dev-toolchain-just
Version: 1.58.0
Summary: 🤖 Just a command runner
Keywords: command-line,task,runner,development,utility
Home-Page: https://github.com/casey/just
Maintainer-email: Astral <hey@astral.sh>
License: CC0-1.0
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/casey/just
Project-URL: Source Code, https://github.com/casey/just

> **Build provenance:** This package is built and distributed by [Astral](https://astral.sh) as part of [`astral-dev-toolchain`](https://github.com/astral-sh/astral-dev-toolchain).
> It packages [`just`](https://github.com/casey/just) from tag `1.58.0` at commit `7f4ef81bd6a93faa2b28430912c8e9ab0e3dd29a`.

---

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

```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](https://github.com/casey/just).

