From 74b54b671d25bd4f6c37eeb6dbbf0364a6fd5b9b Mon Sep 17 00:00:00 2001 From: Xynnn007 Date: Wed, 26 Jul 2023 08:39:26 +0800 Subject: [PATCH] ocicrypt-rs: update base64-serde dep to v0.7 Signed-off-by: Xynnn007 --- Cargo.toml | 1 + ocicrypt-rs/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a5bcb4474..91d77d183 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ aes-gcm = "0.10.2" anyhow = "1.0" async-trait = "0.1.71" base64 = "0.21.2" +base64-serde = "0.7" cfg-if = "1.0.0" clap = "4" const_format = "0.2.30" diff --git a/ocicrypt-rs/Cargo.toml b/ocicrypt-rs/Cargo.toml index 093278649..f473c92e1 100644 --- a/ocicrypt-rs/Cargo.toml +++ b/ocicrypt-rs/Cargo.toml @@ -14,7 +14,7 @@ aes = { workspace = true, optional = true } async-trait = { workspace = true, optional = true } attestation_agent = { path = "../attestation-agent/lib", optional = true } base64.workspace = true -base64-serde = { version = "0.6", optional = true } +base64-serde = { workspace = true, optional = true } cfg-if.workspace = true ctr = { workspace = true, optional = true } hmac = { workspace = true, optional = true }