Basically I removed all the warnings, removed some old APIs no longer in use, added cert verification to DB, im just cool like that.
This commit is contained in:
parent
c06afde7cb
commit
5a8e61c255
18 changed files with 363 additions and 254 deletions
14
hooks/pre-commit
Executable file
14
hooks/pre-commit
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo "running cargo check..."
|
||||
|
||||
cargo check
|
||||
STATUS=$?
|
||||
|
||||
if [ $STATUS -ne 0 ]; then
|
||||
echo "cargo check failed, aborting"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "cargo check passed"
|
||||
exit 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue