add cargo dep

This commit is contained in:
Dmitry Shibanov
2020-07-07 12:16:42 +03:00
parent 9ed8bbbc63
commit 344225a964
4 changed files with 34 additions and 1 deletions

View File

@@ -17,3 +17,13 @@ else
Write-Host "rustc is not on the path"
exit 1
}
if (-Not (Get-Command -Name 'cargo audit')){
Write-Host "cargo audit is not on the path"
exit 1
}
if (-Not (Get-Command -Name 'cargo outdated')){
Write-Host "cargo outdated is not on the path"
exit 1
}