From c9d3bef42a26976b83c8f1446853f48f0cca5b24 Mon Sep 17 00:00:00 2001 From: phoenix Date: Wed, 17 Jun 2026 15:45:36 -0400 Subject: [PATCH] Removing base64 dependency --- Cargo.lock | 1 - Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 29d1fdd..b8944f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2297,7 +2297,6 @@ version = "0.1.8" dependencies = [ "axum", "axum-extra", - "base64", "common-multipart-rfc7578", "futures", "josekit", diff --git a/Cargo.toml b/Cargo.toml index 5797080..1a544c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ uuid = { version = "1.23.3", features = ["v4", "serde"] } sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] } time = { version = "0.3.49", features = ["formatting", "macros", "parsing", "serde"] } thiserror = "2.0.18" -base64 = "0.22.1" +# base64 = "0.22.1" jsonwebtoken = { version = "10.4.0", features = ["rust_crypto"] } josekit = { version = "0.10.3" } utoipa = { version = "5.5.0", features = ["axum_extras"] }