mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-02-24 23:45:18 +08:00
bumped argon2
This commit is contained in:
parent
fc10d1ab13
commit
d7791837e3
2 changed files with 8 additions and 8 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -109,13 +109,13 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "argon2"
|
||||
version = "0.3.4"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "25df3c03f1040d0069fcd3907e24e36d59f9b6fa07ba49be0eb25a794f036ba7"
|
||||
checksum = "a27e27b63e4a34caee411ade944981136fdfa535522dc9944d6700196cbd899f"
|
||||
dependencies = [
|
||||
"base64ct",
|
||||
"blake2",
|
||||
"password-hash 0.3.2",
|
||||
"password-hash 0.4.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -2115,9 +2115,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "password-hash"
|
||||
version = "0.3.2"
|
||||
version = "0.4.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8"
|
||||
checksum = "e029e94abc8fb0065241c308f1ac6bc8d20f450e8f7c5f0b25cd9b8d526ba294"
|
||||
dependencies = [
|
||||
"base64ct",
|
||||
"rand_core",
|
||||
|
@ -3901,7 +3901,7 @@ dependencies = [
|
|||
"humantime-serde",
|
||||
"lazy_static",
|
||||
"packet",
|
||||
"password-hash 0.3.2",
|
||||
"password-hash 0.4.1",
|
||||
"poem-openapi",
|
||||
"rand",
|
||||
"rand_chacha",
|
||||
|
|
|
@ -6,7 +6,7 @@ version = "0.1.0"
|
|||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
argon2 = "0.3"
|
||||
argon2 = "0.4"
|
||||
async-trait = "0.1"
|
||||
bytes = "1.1"
|
||||
chrono = {version = "0.4", features = ["serde"]}
|
||||
|
@ -14,7 +14,7 @@ data-encoding = "2.3"
|
|||
humantime-serde = "1.1"
|
||||
lazy_static = "1.4"
|
||||
packet = "0.1"
|
||||
password-hash = "0.3"
|
||||
password-hash = "0.4"
|
||||
poem-openapi = {version = "^1.3.24", features = ["swagger-ui", "chrono", "uuid", "static-files"]}
|
||||
rand = "0.8"
|
||||
rand_chacha = "0.3"
|
||||
|
|
Loading…
Reference in a new issue