From 7a2fa7ae3fcad1d0c14bfbad2126302aa676b127 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Mon, 3 Jan 2022 10:09:55 +0100 Subject: [PATCH] Add justfile target to update all dependencies --- Justfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index dce27d2..3f97304 100644 --- a/Justfile +++ b/Justfile @@ -35,7 +35,9 @@ test-e2e +tests=".": e2e-venv release && . ./venv/bin/activate \ && TMPDIR=/dev/shm python -m pytest --color=yes {{tests}} -update-dependencies: +update-dependencies: update-cargo-dependencies update-pip-requirements + +update-cargo-dependencies: @cd ./depcheck \ && python3 -m venv ./venv \ && . ./venv/bin/activate \