mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-08 17:34:16 +00:00
b0447ad94d
* Upgrading lemmy-js-client version to 0.19.4 * Upgrading deps before renovate.
18 lines
175 B
Bash
Executable file
18 lines
175 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
pushd ../
|
|
|
|
# Check unused deps
|
|
cargo udeps --all-targets
|
|
|
|
# Update deps first
|
|
cargo update
|
|
|
|
# Upgrade deps
|
|
cargo upgrade
|
|
|
|
# Run clippy
|
|
cargo clippy
|
|
|
|
popd
|