Bump all outdated dependencies
skip-changelog: This isn’t a user-facing change.
This commit is contained in:
parent
697d4d3bef
commit
58735d6a70
7 changed files with 24 additions and 18 deletions
|
|
@ -22,10 +22,10 @@ anonymous = ["getrandom"]
|
|||
[dependencies]
|
||||
base64 = { version = "0.22", optional = true }
|
||||
getrandom = { version = ">=0.3.0, <0.5", optional = true }
|
||||
sha1 = { version = "0.10", optional = true }
|
||||
sha2 = { version = "0.10", optional = true }
|
||||
hmac = { version = "0.12", optional = true }
|
||||
pbkdf2 = { version = "0.12", default-features = false, optional = true }
|
||||
sha1 = { version = "0.11", optional = true }
|
||||
sha2 = { version = "0.11", optional = true }
|
||||
hmac = { version = "0.13", optional = true }
|
||||
pbkdf2 = { version = "0.13", default-features = false, optional = true }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ use alloc::string::{String, ToString};
|
|||
use alloc::vec;
|
||||
use alloc::vec::Vec;
|
||||
use core::fmt;
|
||||
use hmac::{digest::InvalidLength, Hmac, Mac};
|
||||
use hmac::{digest::InvalidLength, Hmac, KeyInit, Mac};
|
||||
use pbkdf2::pbkdf2;
|
||||
use sha1::{Digest, Sha1 as Sha1_hash};
|
||||
use sha2::Sha256 as Sha256_hash;
|
||||
|
|
|
|||
Loading…
Reference in a new issue