From c875be5a0afbcfb5d889a3b8df9056cf1cf95ad5 Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Mon, 22 Jul 2024 13:34:15 -0700 Subject: [PATCH] chore: Remove the `update` justfile command This command updates dependencies in our Cargo.toml, which we really only want to do sparingly -- we don't want to unnecessarily bump a minor/patch version of a dep, for example. --- justfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/justfile b/justfile index 6c54ddd4..d17c98b3 100644 --- a/justfile +++ b/justfile @@ -35,10 +35,6 @@ coverage: coverage-clean coverage-open: coverage open target/llvm-cov-target/debug/coverage/index.html -# Update dependencies to their latest versions. -update: - cargo upgrade - # Run a suite of checks. These checks are fairly comprehensive and will catch most issues. However, they are still less than what is run in CI. check: .cargo-husky/hooks/pre-push