-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmix.exs
46 lines (43 loc) · 1.24 KB
/
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
41
42
43
44
45
46
defmodule Auth.Mixfile do
use Mix.Project
def project do
[
app: :auth,
version: "0.1.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Auth.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug, "~> 1.14"},
{:remote_ip, "~> 1.1"},
{:grpc, "0.5.0-beta.1"},
{:cowboy, "~> 2.9.0", override: true},
{:cowlib, "~> 2.11.0", override: true},
{:fun_registry, github: "renderedtext/fun-registry", only: [:dev, :test]},
{:watchman, github: "renderedtext/ex-watchman"},
{:feature_provider, git: "git@github.com:renderedtext/feature_provider", tag: "v0.1.2"},
{:cachex, "~> 3.0"},
{:httpoison, "~> 0.11", only: [:dev, :test]},
{:sentry, "~> 8.0"},
{:hackney, "~> 1.20"},
{:plug_cowboy, "~> 2.3"},
{:jason, "~> 1.1"},
{:inet_cidr, "~> 1.0.0"},
{:wormhole, "~> 2.3"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:junit_formatter, "~> 3.1", only: [:test]},
{:uuid, "~> 1.1"}
]
end
end