aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
blob: 2fb5b1bdea97c8f5632adea71962544d153af6d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
defmodule Thulani.MixProject do
  use Mix.Project

  def project do
    [
      app: :thulani,
      version: "0.1.0",
      elixir: "~> 1.14",
      start_permanent: Mix.env() == :prod,
      deps: deps()
    ]
  end

  def application do
    [
      mod: {Thulani, []},
      extra_applications: [:logger]
    ]
  end

  defp deps do
    [
      {:nostrum, "~> 0.6"},
      {:witchcraft, "~> 1.0"},
      {:algae, "~> 1.2"},
      {:quark, "~> 2.3"},
      {:exceptional, "~> 2.1"},
      {:ok, "~> 2.3"}
    ]
  end
end