From aee08e6dd499d5ec65804dd18649b2878f5b32a0 Mon Sep 17 00:00:00 2001
From: Matthew Weidner <17693586+mweidner037@users.noreply.github.com>
Date: Wed, 12 Mar 2025 12:58:10 -0500
Subject: [PATCH 1/2] extra_applications instead of applications

---
 mix.exs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mix.exs b/mix.exs
index cf41cb9..b0aa08d 100644
--- a/mix.exs
+++ b/mix.exs
@@ -22,7 +22,7 @@ defmodule Mongo.Ecto.Mixfile do
   #
   # Type `mix help compile.app` for more information.
   def application do
-    [applications: [:ecto, :mongodb_driver, :logger, :telemetry]]
+    [extra_applications: [:logger]]
   end
 
   defp deps do

From fe037587e7d30df51f51d05a45e6d3552c8668f5 Mon Sep 17 00:00:00 2001
From: Matthew Weidner <17693586+mweidner037@users.noreply.github.com>
Date: Wed, 12 Mar 2025 13:06:09 -0500
Subject: [PATCH 2/2] get mix docs working

---
 mix.exs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mix.exs b/mix.exs
index b0aa08d..0e86fbc 100644
--- a/mix.exs
+++ b/mix.exs
@@ -30,7 +30,7 @@ defmodule Mongo.Ecto.Mixfile do
       {:credo, "~> 1.5.6", only: [:dev, :test], runtime: false},
       {:dialyxir, "~> 1.1.0", only: :dev, runtime: false},
       {:ecto, "~> 3.12"},
-      {:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
+      {:ex_doc, ">= 0.0.0", only: :docs, runtime: false},
       {:excoveralls, "~> 0.16", only: :test},
       {:mongodb_driver, "~> 1.4"},
       {:telemetry, ">= 0.4.0"}