mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-08 09:24:17 +00:00
15 lines
143 B
Bash
Executable file
15 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
|