From a7a26251be9f1f088b2ae29df6b5a35c4769cf0a Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Tue, 17 Jun 2025 14:24:57 -0500 Subject: [PATCH] reorder deps --- mix.exs | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/mix.exs b/mix.exs index 980611a..18bb236 100644 --- a/mix.exs +++ b/mix.exs @@ -45,38 +45,37 @@ defmodule Aprs.MixProject do {:ecto_sql, "~> 3.11"}, {:finch, "~> 0.13"}, {:geo, "~> 4.0.1"}, - {:geocalc, "~> 0.8"}, {:geo_postgis, "~> 3.4"}, + {:geocalc, "~> 0.8"}, + {:gettext, "~> 0.26.2"}, + {:hackney, "~> 1.24"}, {:heroicons, "~> 0.5"}, {:jason, "~> 1.2"}, {:libcluster, "~> 3.3"}, {:oban, "~> 2.11"}, {:phoenix, "~> 1.7.0-rc.2", override: true}, {:phoenix_ecto, "~> 4.4"}, - {:postgrex, ">= 0.0.0"}, {:phoenix_html, "~> 4.0"}, + {:phoenix_live_dashboard, "~> 0.8"}, {:phoenix_live_reload, "~> 1.2", only: :dev}, {:phoenix_live_view, "~> 1.0.2"}, - {:phoenix_live_dashboard, "~> 0.8"}, {:plug_cowboy, "~> 2.5"}, + {:postgrex, ">= 0.0.0"}, {:swoosh, "~> 1.3"}, - # {:timex, "~> 3.4"}, - {:gettext, "~> 0.26.2"}, {:telemetry_metrics, "~> 1.0"}, - {:hackney, "~> 1.24"}, {:telemetry_poller, "~> 1.0"}, {:esbuild, "~> 0.5", runtime: Mix.env() == :dev}, {:tailwind, "~> 0.3.1", runtime: Mix.env() == :dev}, + {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:dialyxir, "~> 1.0", only: :dev, runtime: false}, {:excoveralls, "~> 0.18", only: :test, runtime: false}, {:exvcr, "~> 0.15", only: :test}, - {:floki, ">= 0.30.0", only: :test}, {:faker, "~> 0.18", only: [:dev, :test]}, - {:stream_data, "~> 1.2.0", only: [:dev, :test]}, - {:styler, "~> 1.4.2", only: [:dev, :test], runtime: false}, - {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, + {:floki, ">= 0.30.0", only: :test}, {:mix_test_watch, "~> 1.1", only: [:dev, :test]}, - {:sobelow, "~> 0.8", only: :dev} + {:sobelow, "~> 0.8", only: :dev}, + {:stream_data, "~> 1.2.0", only: [:dev, :test]}, + {:styler, "~> 1.4.2", only: [:dev, :test], runtime: false} ] end