-
Notifications
You must be signed in to change notification settings - Fork 144
/
mix.exs
40 lines (37 loc) · 941 Bytes
/
mix.exs
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
32
33
34
35
36
37
38
39
40
defmodule Lanyard.MixProject do
use Mix.Project
def project do
[
app: :lanyard,
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :corsica],
mod: {Lanyard, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug, "~> 1.14"},
{:bandit, "~> 0.7.7"},
{:websock_adapter, "~> 0.5.3"},
{:prometheus_plugs, "~> 1.1"},
{:prometheus_ex,
git: "https://github.com/lanodan/prometheus.ex", branch: "fix/elixir-1.14", override: true},
{:websocket_client, "~> 1.5"},
{:jason, "~> 1.4"},
{:gen_registry, "~> 1.3"},
{:corsica, "~> 1.3"},
{:manifold, "~> 1.6"},
{:finch, "~> 0.16.0"},
{:redix, "~> 1.2"}
]
end
end