From 4f057f7c3fc88d66916aaa14585d722ad068d6b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jan 2023 03:03:42 +0000 Subject: [PATCH] Update base64 requirement from 0.13 to 0.21 Updates the requirements on [base64](https://github.com/marshallpierce/rust-base64) to permit the latest version. - [Release notes](https://github.com/marshallpierce/rust-base64/releases) - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.13.0...v0.21.0) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4cc9e8622..81c018717 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ uds = ["tokio", "tokio/net"] conversion = ["frunk", "frunk_derives", "frunk_core", "frunk-enum-core", "frunk-enum-derive"] [dependencies] -base64 = "0.13" +base64 = "0.21" serde = { version = "1.0.119", optional = true, features = ["derive"] } serde_json = { version = "1.0", optional = true } hyper = "0.14"