1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-01-24 06:37:57 +00:00
lemmy/scripts/upgrade_deps.sh

14 lines
143 B
Bash
Executable file

#!/bin/bash
pushd ../
# Check unused deps
cargo udeps --all-targets
# Upgrade deps
cargo upgrade --workspace
# Run check
cargo check
popd