diff --git a/apps/grove/host/Cargo.lock b/apps/grove/host/Cargo.lock index cfa8803..b70358e 100644 --- a/apps/grove/host/Cargo.lock +++ b/apps/grove/host/Cargo.lock @@ -42,7 +42,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90" dependencies = [ "axum-core", - "base64", + "base64 0.22.1", "bytes", "form_urlencoded", "futures-util", @@ -96,6 +96,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5" + [[package]] name = "base64-simd" version = "0.8.0" @@ -348,7 +354,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8240c244a4643b8df55e5bef415af26581f3bb06101f3c26c9738f0275c36cc3" dependencies = [ "anyhow", - "base64", + "base64 0.22.1", "bit-set", "bit-vec", "boxed_error", @@ -714,7 +720,7 @@ version = "0.0.0" dependencies = [ "anyhow", "axum", - "base64", + "base64 0.23.1", "deno_core", "futures-util", "hmac", @@ -855,7 +861,7 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-channel", "futures-util", @@ -1541,7 +1547,7 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-core", "http", diff --git a/apps/grove/host/Cargo.toml b/apps/grove/host/Cargo.toml index 29f0b2a..24357ab 100644 --- a/apps/grove/host/Cargo.toml +++ b/apps/grove/host/Cargo.toml @@ -27,7 +27,7 @@ serde_json = { version = "1", features = ["raw_value"] } hmac = "0.12" sha2 = "0.10" subtle = "2.6" -base64 = "0.22" +base64 = "0.23" reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }