mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-01 12:48:42 +00:00
14 lines
143 B
Bash
Executable file
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
|