From f8788dfba9cb4ea829b47ec9c7fb768009c4523d4dbb2495474e602ffa611b2f Mon Sep 17 00:00:00 2001 From: Tyler J King Date: Fri, 15 May 2026 15:44:41 -0400 Subject: [PATCH] fix(orchestrator): drop google_protos dep conflicting with protobuf builtins The google_protos package redefines modules (Google.Protobuf.Any, etc.) already provided by protobuf ~> 0.13, causing --warnings-as-errors to fail the production release build. Co-Authored-By: Claude Opus 4.6 Signed-off-by: Tyler J King --- apps/guildhall_orchestrator/mix.exs | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/guildhall_orchestrator/mix.exs b/apps/guildhall_orchestrator/mix.exs index 4b522e3..e0c919f 100644 --- a/apps/guildhall_orchestrator/mix.exs +++ b/apps/guildhall_orchestrator/mix.exs @@ -31,7 +31,6 @@ defmodule Guildhall.Orchestrator.MixProject do {:jason, "~> 1.4"}, {:grpc, "~> 0.9"}, {:protobuf, "~> 0.13"}, - {:google_protos, "~> 0.4"}, {:toml, "~> 0.7"} ] end