Update deps, allow needless borrow
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Aode (Lion) 2022-01-31 20:31:49 -06:00
parent 72cf39b411
commit 80bafc9f10
3 changed files with 269 additions and 309 deletions

574
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -13,7 +13,7 @@ async-fs = "1.3.0"
async-process = "1.0.0"
async-trait = "0.1.40"
base64 = "0.13.0"
bcrypt = "0.9.0"
bcrypt = "0.10.1"
blocking = "1.0.0"
config = { version = "0.11.0", features = ["toml"] }
futures-lite = "1.8.0"

View file

@ -1,3 +1,5 @@
#![allow(clippy::needless_borrow)]
use blocking::unblock;
use futures_lite::*;
use once_cell::sync::Lazy;