From 8f729638f530f00b3ee97956b618b6bb7cbef635 Mon Sep 17 00:00:00 2001 From: Maycon Amaro <131882788+mayconamaroCW@users.noreply.github.com> Date: Tue, 30 Jan 2024 10:21:40 -0300 Subject: [PATCH] fix: decrease outdated depth (#106) --- .justfile_helpers | 2 +- justfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.justfile_helpers b/.justfile_helpers index 2dcd1cdd6..567955757 100644 --- a/.justfile_helpers +++ b/.justfile_helpers @@ -7,7 +7,7 @@ _outdated: #!/bin/bash mkdir -p .outdated_tmp cp -p Cargo.lock .outdated_tmp/Cargo.lock - cargo update + cargo update stratus diff -u .outdated_tmp/Cargo.lock Cargo.lock result=$? cp -p .outdated_tmp/Cargo.lock Cargo.lock diff --git a/justfile b/justfile index 7998cb96d..138a95d48 100644 --- a/justfile +++ b/justfile @@ -66,9 +66,9 @@ sqlx: outdated: @just _outdated -# Stratus: Update crates +# Stratus: Update only the project dependencies update: - cargo update + cargo update stratus # ------------------------------------------------------------------------------ # Test tasks