diff --git a/Cargo.lock b/Cargo.lock index 0a70412a..c1de7e09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -184,6 +184,12 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +[[package]] +name = "base64" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" + [[package]] name = "base64ct" version = "1.5.3" @@ -4105,7 +4111,7 @@ name = "tauri-plugin-authenticator" version = "0.1.0" dependencies = [ "authenticator", - "base64 0.13.1", + "base64 0.20.0", "chrono", "log", "once_cell", diff --git a/plugins/authenticator/Cargo.toml b/plugins/authenticator/Cargo.toml index 145b5140..fe784e57 100644 --- a/plugins/authenticator/Cargo.toml +++ b/plugins/authenticator/Cargo.toml @@ -18,7 +18,7 @@ thiserror.workspace = true authenticator = "0.3.1" once_cell = "1.9" sha2 = "0.10" -base64 = { version = "^0.13" } +base64 = { version = "^0.20" } u2f = "0.2" chrono = "0.4"