Greg Burd
201ec39dd2
Reviewed-on: #323 Co-authored-by: Greg Burd <greg@burd.me> Co-committed-by: Greg Burd <greg@burd.me>
11 lines
330 B
Makefile
11 lines
330 B
Makefile
.PHONY: outdated fix
|
|
|
|
outdated:
|
|
for p in $(dirname $(ls Cargo.toml */Cargo.toml */*/Cargo.toml)); do echo $p; (cd $p; cargo outdated -R); done
|
|
|
|
|
|
fix:
|
|
$(for p in $(dirname $(ls Cargo.toml */Cargo.toml */*/Cargo.toml)); do echo $p; (cd $p; cargo fix --allow-dirty --broken-code --edition-idioms); done)
|
|
|
|
upgrades:
|
|
cargo upgrades
|