Update Rust crate base64 to 0.23.0 #24

Open
rasensprenger wants to merge 1 commit from renovate/base64-0.x into main
4 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View file

@ -2240,7 +2240,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",
@ -2283,7 +2283,7 @@ dependencies = [
name = "iota-util"
version = "0.1.0"
dependencies = [
"base64 0.22.1",
"base64 0.23.1",
"hex",
"iota-paths",
"mtp",
@ -2996,7 +2996,7 @@ name = "omikron-connector"
version = "0.1.0"
dependencies = [
"async-trait",
"base64 0.22.1",
"base64 0.23.1",
"dashmap",
"iota-connection",
"iota-logger",

View file

@ -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"

View file

@ -15,7 +15,7 @@ sysinfo = "0.38.0"
uuid = { version = "*", features = ["v4"] }
walkdir = "2.5.0"
zip = "6.0.0"
base64 = "0.22.1"
base64 = "0.23.0"
hex = "*"
[dev-dependencies]

View file

@ -23,5 +23,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"] }