Skip to content

Commit

Permalink
chore(deps): [torrust#122] bump argon2 from 0.4.1 to 0.5.0 and pbkdf2…
Browse files Browse the repository at this point in the history
… 0.11.0 to 0.12.1
  • Loading branch information
josecelano committed Apr 28, 2023
1 parent 79c54e8 commit e8f8803
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde_json = "1"
serde_bencode = "0.2.3"
serde_bytes = "0.11"
urlencoding = "2.1.0"
argon2 = "0.4.1"
argon2 = "0.5"
rand_core = { version = "0.6", features = ["std"] }
chrono = "0.4.19"
jsonwebtoken = "8.1.1"
Expand All @@ -37,7 +37,7 @@ tokio = {version = "1.13", features = ["macros", "io-util", "net", "time", "rt-m
lettre = { version = "0.10.0-rc.3", features = ["builder", "tokio1", "tokio1-rustls-tls", "smtp-transport"]}
sailfish = "0.4.0"
regex = "1.6.0"
pbkdf2 = "0.11.0"
pbkdf2 = { version = "0.12", features = ["simple"] }
text-colorizer = "1.0.0"
log = "0.4.17"
fern = "0.6.2"
Expand Down
2 changes: 1 addition & 1 deletion src/routes/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ use argon2::password_hash::SaltString;
use argon2::{Argon2, PasswordHash, PasswordHasher, PasswordVerifier};
use jsonwebtoken::{decode, Algorithm, DecodingKey, Validation};
use log::{debug, info};
use pbkdf2::password_hash::rand_core::OsRng;
use pbkdf2::Pbkdf2;
use rand_core::OsRng;
use serde::{Deserialize, Serialize};

use crate::common::WebAppData;
Expand Down

0 comments on commit e8f8803

Please sign in to comment.