From 1ad60133f5f2de3724f2f24b2c42bae0929fc1d0 Mon Sep 17 00:00:00 2001 From: Rasensprenger Date: Thu, 20 Aug 2026 19:01:06 +0300 Subject: [PATCH] Update Rust crate base64 to 0.23.0 --- Cargo.lock | 6 +++--- communities/Cargo.toml | 2 +- iota-storage/Cargo.toml | 2 +- iota-util/Cargo.toml | 2 +- omikron-connector/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 925c024..2c8c6d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2250,7 +2250,7 @@ name = "iota-storage" version = "0.1.0" dependencies = [ "arc-swap", - "base64 0.22.1", + "base64 0.23.1", "iota-logger", "iota-paths", "iota-util", @@ -2293,7 +2293,7 @@ dependencies = [ name = "iota-util" version = "0.1.0" dependencies = [ - "base64 0.22.1", + "base64 0.23.1", "hex", "iota-paths", "mtp", @@ -3044,7 +3044,7 @@ name = "omikron-connector" version = "0.1.0" dependencies = [ "async-trait", - "base64 0.22.1", + "base64 0.23.1", "dashmap", "iota-connection", "iota-logger", diff --git a/communities/Cargo.toml b/communities/Cargo.toml index 4279454..3cdd0e0 100644 --- a/communities/Cargo.toml +++ b/communities/Cargo.toml @@ -8,7 +8,7 @@ mtp = { git = "https://git.methanium.net/Methanium/mtp.git" } iota-util = { path = "../iota-util" } aes-gcm = "0.10.3" async-trait = "0.1.89" -base64 = "0.22.1" +base64 = "0.23.0" futures = "*" hkdf = "0.12.4" hyper = { version = "1.8.1", features = [ diff --git a/iota-storage/Cargo.toml b/iota-storage/Cargo.toml index 9f91c52..ebbf514 100644 --- a/iota-storage/Cargo.toml +++ b/iota-storage/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" iota-logger = { path = "../iota-logger" } iota-util = { path = "../iota-util" } iota-paths = { path = "../iota-paths" } -base64 = "0.22.1" +base64 = "0.23.0" json = "*" arc-swap = "1" once_cell = "1.21.3" diff --git a/iota-util/Cargo.toml b/iota-util/Cargo.toml index 49bfe51..0f81046 100644 --- a/iota-util/Cargo.toml +++ b/iota-util/Cargo.toml @@ -15,5 +15,5 @@ sysinfo = "0.39.0" uuid = { version = "*", features = ["v4"] } walkdir = "2.5.0" zip = "6.0.0" -base64 = "0.22.1" +base64 = "0.23.0" hex = "*" diff --git a/omikron-connector/Cargo.toml b/omikron-connector/Cargo.toml index c4773f7..676f034 100644 --- a/omikron-connector/Cargo.toml +++ b/omikron-connector/Cargo.toml @@ -22,5 +22,5 @@ reqwest = "0.13.2" tokio = { version = "1.50.0", features = ["full"] } tokio-util = { version = "0.7", features = ["rt"] } uuid = { version = "*", features = ["v4"] } -base64 = "0.22.1" +base64 = "0.23.0" rand_core = { version = "0.6", features = ["getrandom", "std"] }