Add HTTPoison and FastHtml

This commit is contained in:
Thelonius Kort
2022-12-29 22:10:44 +01:00
parent b48274eaef
commit a0b280438c
3 changed files with 15 additions and 1 deletions

View File

@ -19,7 +19,7 @@ defmodule Outlook.MixProject do
def application do
[
mod: {Outlook.Application, []},
extra_applications: [:logger, :runtime_tools]
extra_applications: [:logger, :runtime_tools, :httpoison]
]
end
@ -53,6 +53,8 @@ defmodule Outlook.MixProject do
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
{:ecto_psql_extras, "~> 0.6", only: :dev},
{:fast_html, "~> 2.0"},
{:httpoison, "~> 1.8"},
]
end