-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
38 lines (34 loc) · 769 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
defmodule PlugHackneyTrace.MixProject do
use Mix.Project
def project do
[
app: :plug_hackney_trace,
version: "0.1.0",
elixir: "~> 1.7",
description: "A plug to enable hackney_trace",
package: package(),
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/ishikawa/plug_hackney_trace"}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:plug, "~> 1.7"},
{:hackney, "~> 1.1"},
{:mock, "~> 0.3.0", only: :test},
{:ex_doc, "~> 0.19.1", only: :dev},
{:dialyxir, "~> 1.0.0-rc.4", only: [:dev], runtime: false}
]
end
end