diff --git a/Cargo.lock b/Cargo.lock index fe19b1b077..a852b474d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -206,6 +206,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 = "base64ct" version = "1.8.3" @@ -3611,7 +3617,7 @@ name = "trios-bridge" version = "0.1.0" dependencies = [ "axum", - "base64 0.22.1", + "base64 0.23.1", "dirs", "gethostname", "http-body-util", diff --git a/cli/trios-bridge/Cargo.toml b/cli/trios-bridge/Cargo.toml index 812965a1fc..ed4bd2f792 100644 --- a/cli/trios-bridge/Cargo.toml +++ b/cli/trios-bridge/Cargo.toml @@ -15,7 +15,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -base64 = "0.22" +base64 = "0.23" dirs = "5" gethostname = "1.1"