-
Notifications
You must be signed in to change notification settings - Fork 8
/
mix.exs
41 lines (36 loc) · 826 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
41
defmodule ApolloTracing.Mixfile do
use Mix.Project
@version "0.4.4"
def project do
[
app: :apollo_tracing,
version: @version,
elixir: "~> 1.5-rc",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps()
]
end
defp package do
[
description: "Apollo Tracing middleware for Absinthe",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Sikanhe"],
licenses: ["MIT"],
links: %{github: "https://github.com/sikanhe/apollo-tracing-elixir"}
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:absinthe, "~> 1.4"},
{:absinthe_plug, "~> 1.4", optional: true},
{:jason, "~> 1.1", optional: true},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end