Skip to content

Commit

Permalink
Tau - update mix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Dec 1, 2022
1 parent 5ede1a5 commit 0a331c0
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 47 deletions.
44 changes: 20 additions & 24 deletions app/server/beam/tau/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ defmodule Tau.MixProject do
[
app: :tau,
version: "0.1.0",
elixir: "~> 1.10",
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:gettext] ++ Mix.compilers(),
elixirc_options: [debug_info: Mix.env() == :dev],
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps()
Expand All @@ -16,8 +16,7 @@ defmodule Tau.MixProject do

# Run "mix help compile.app" to learn about applications.
def application do
[mod: {Tau.Application, []},
extra_applications: [:logger, :runtime_tools]]
[mod: {Tau.Application, []}, extra_applications: [:logger, :runtime_tools]]
end

# Specifies which paths to compile per environment.
Expand All @@ -29,26 +28,23 @@ defmodule Tau.MixProject do
# Type `mix help deps` for examples and options.
defp deps do
[
{:rustler, "~> 0.22.0"},
{:logger_file_backend, "~> 0.0.13"},
{:phoenix, "~> 1.6"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_view, "~> 0.17"},
{:phoenix_live_dashboard, "~> 0.6.5"},
{:flame_on, "~> 0.3.0"},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.18"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
{:petal_components, "~> 0.13.0"},

{:phoenix_live_reload, "~> 1.2", only: :dev},

{:esbuild, "~> 0.5", runtime: Mix.env() == :dev, only: :dev},
{:exsync, "~> 0.2.4", runtime: Mix.env() == :dev, only: :dev},
{:tailwind, "~> 0.1", runtime: Mix.env() == :dev, only: :dev},

{:rustler, "~> 0.26.0"},
{:logger_file_backend, "~> 0.0.13"},
{:phoenix, "~> 1.6"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_view, "~> 0.18"},
{:phoenix_live_dashboard, "~> 0.7"},
# {:flame_on, "~> 0.5.2"},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 0.20"},
{:jason, "~> 1.4"},
{:plug_cowboy, "~> 2.6"},
{:petal_components, "~> 0.18.0"},
{:phoenix_live_reload, "~> 1.4", only: :dev},
{:esbuild, "~> 0.5", runtime: Mix.env() == :dev, only: :dev},
{:exsync, "~> 0.2.4", runtime: Mix.env() == :dev, only: :dev},
{:tailwind, "~> 0.1", runtime: Mix.env() == :dev, only: :dev},
{:floki, ">= 0.30.0", only: :test}
]
end
Expand Down
Loading

0 comments on commit 0a331c0

Please sign in to comment.