diff options
| author | Nathan Perry <np@nathanperry.dev> | 2020-02-17 02:08:09 -0500 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2020-02-17 02:08:09 -0500 |
| commit | 19b6ba3153eb5f21b0b38c6a7889e0aef82356f4 (patch) | |
| tree | 3c389216dbb4973fbc1289a2c979b50a173379f3 /apps/thulani_bot/mix.exs | |
| parent | 021108b2c9a34c05d2b1e3e7899c29d8de463e41 (diff) | |
rework a bunch of stuffelixir.prev.2
Diffstat (limited to 'apps/thulani_bot/mix.exs')
| -rw-r--r-- | apps/thulani_bot/mix.exs | 7 |
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 |
