Crates.io | just |
lib.rs | just |
version | |
source | src |
created_at | 2016-10-23 05:52:52.761548 |
updated_at | 2024-12-10 21:41:37.329185 |
description | 🤖 Just a command runner |
homepage | https://github.com/casey/just |
repository | https://github.com/casey/just |
max_upload_size | |
id | 6950 |
Cargo.toml error: | TOML parse error at line 25, column 1 | 25 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
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.