update deps also repo dashboard

This commit is contained in:
2024-03-26 17:49:07 +01:00
parent 5bc3d24405
commit b26434b795
3 changed files with 48 additions and 44 deletions

View File

@ -19,7 +19,7 @@ defmodule SomethingErlang.MixProject do
def application do
[
mod: {SomethingErlang.Application, []},
extra_applications: [:logger, :runtime_tools]
extra_applications: [:logger, :runtime_tools, :os_mon]
]
end
@ -35,7 +35,8 @@ defmodule SomethingErlang.MixProject do
{:bcrypt_elixir, "~> 3.0"},
{:phoenix, "~> 1.7.0-rc.2", override: true},
{:phoenix_ecto, "~> 4.4"},
{:ecto_sql, "~> 3.6"},
{:ecto_sql, "~> 3.10"},
{:ecto_psql_extras, "~> 0.6"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
@ -51,7 +52,7 @@ defmodule SomethingErlang.MixProject do
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.20"},
{:jason, "~> 1.2"},
{:bandit, ">= 0.6.7"},
{:bandit, "~> 1.0"},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:req, "~> 0.3"}
]