aboutsummaryrefslogtreecommitdiff
path: root/apps/thulani_bot/mix.exs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/thulani_bot/mix.exs')
-rw-r--r--apps/thulani_bot/mix.exs7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/thulani_bot/mix.exs b/apps/thulani_bot/mix.exs
index 9338bb1..25e8373 100644
--- a/apps/thulani_bot/mix.exs
+++ b/apps/thulani_bot/mix.exs
@@ -18,7 +18,8 @@ defmodule Thulani.Bot.MixProject do
def application do
[
extra_applications: [
- :logger
+ :logger,
+ :sasl
],
mod: {Thulani.Bot.Application, []}
]
@@ -26,8 +27,10 @@ defmodule Thulani.Bot.MixProject do
defp deps do
[
+ {:util, in_umbrella: true},
{:nostrum, "~> 0.4", runtime: false},
- {:util, in_umbrella: true}
+ {:dialyxir, "~>1.0.0-rc.7", only: [:dev], runtime: false},
+ {:credo, "~> 1.2", only: [:dev, :test], runtime: false}
]
end
end