From 3768d8bb1beca8ed08ef47fd80a406d181ba52df Mon Sep 17 00:00:00 2001 From: centdix Date: Thu, 26 Mar 2026 16:19:04 +0100 Subject: [PATCH] fix: add base64 dependency to windmill-ai for bedrock PDF support Co-Authored-By: Claude Opus 4.6 (1M context) --- backend/Cargo.lock | 3 ++- backend/windmill-ai/Cargo.toml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index a74ad2896a..9aeba3b115 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -15838,13 +15838,14 @@ dependencies = [ [[package]] name = "windmill-ai" -version = "1.664.0" +version = "1.665.0" dependencies = [ "async-trait", "aws-config", "aws-credential-types", "aws-sdk-bedrockruntime", "aws-smithy-types", + "base64 0.22.1", "lazy_static", "reqwest 0.13.1", "serde", diff --git a/backend/windmill-ai/Cargo.toml b/backend/windmill-ai/Cargo.toml index ce88f7b817..69cc0f181b 100644 --- a/backend/windmill-ai/Cargo.toml +++ b/backend/windmill-ai/Cargo.toml @@ -20,6 +20,7 @@ windmill-parser.workspace = true windmill-mcp = { workspace = true, optional = true } async-trait.workspace = true +base64.workspace = true reqwest.workspace = true serde.workspace = true serde_json.workspace = true