From 1241bbb4e89bf3d559c139aff87f8bc981bc055b Mon Sep 17 00:00:00 2001 From: Sebastian Martinez Date: Tue, 25 Jul 2023 15:46:59 +0200 Subject: [PATCH] docs: Replace deprecated `--all` flag with `--workspace` Signed-off-by: Sebastian Martinez --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index add88bd9..24875008 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,7 +11,7 @@ simple guidelines. Always check your code with the linter (`clippy`), by running: - $ cargo clippy --all --tests + $ cargo clippy --workspace --tests And make sure your code is formatted with, using: @@ -23,14 +23,14 @@ Finally, ensure there is no trailing whitespace anywhere. Make sure all tests are passing with: - $ cargo test --all + $ cargo test --workspace ## Checking the docs If you make documentation changes, you may want to check whether there are any warnings or errors: - $ cargo doc --all --all-features + $ cargo doc --workspace --all-features ## Code style