mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +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
|