From 8d0a4230b0055fea7c6a51e3e4f6978bfa9bc198 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 26 Dec 2020 15:44:39 +0100 Subject: [PATCH] Bump dependencies again --- sasl/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sasl/Cargo.toml b/sasl/Cargo.toml index e8101790..ed761942 100644 --- a/sasl/Cargo.toml +++ b/sasl/Cargo.toml @@ -19,9 +19,9 @@ default = ["scram"] scram = ["base64", "getrandom", "sha-1", "sha2", "hmac", "pbkdf2"] [dependencies] -base64 = { version = "0.12", optional = true } -getrandom = { version = "0.1", optional = true } +base64 = { version = "0.13", optional = true } +getrandom = { version = "0.2", optional = true } sha-1 = { version = "0.9", optional = true } sha2 = { version = "0.9", optional = true } -hmac = { version = "0.8", optional = true } -pbkdf2 = { version = "0.4", default-features = false, optional = true } +hmac = { version = "0.10", optional = true } +pbkdf2 = { version = "0.6", default-features = false, optional = true }