Compare commits

...
Author SHA1 Message Date
1ad60133f5 Update Rust crate base64 to 0.23.0
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
2026-08-20 19:01:06 +03:00
5 changed files with 7 additions and 7 deletions

6
Cargo.lock generated
View file

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

View file

@ -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 = [

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,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 = "*"

View file

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