From d5ba01bafc7f7f6e4d7233069875778f43c3e894 Mon Sep 17 00:00:00 2001 From: leudz Date: Wed, 8 Jan 2025 12:38:53 +0100 Subject: [PATCH] Replace cargo make mention with just --- CONTRIBUTING.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0dc3575c..da1a5e57 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,12 +16,9 @@ One of the hardest parts about determining which features to build into the core ## Testing -Currently, Shipyard uses [`cargo-make`](https://github.com/sagiegurari/cargo-make) alongside our [Makefile.toml](./Makefile.toml) to specify helpful tasks for testing different feature combinations. +Currently, Shipyard uses [`just`](https://github.com/casey/just) alongside our [justfile](./justfile) to specify helpful tasks for testing different feature combinations. ```sh # run all tests and static checks (miri may not work for macOS) -cargo make test - -# test all feature combinations -cargo make test-all +cargo just test ```