-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmix.exs
41 lines (37 loc) · 895 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 MachineGun.Mixfile do
use Mix.Project
def project do
[
app: :machine_gun,
version: "0.1.8",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
lockfile: "mix.lock",
name: "Machine Gun",
description: "HTTP/1 and HTTP/2 client for Elixir. Based on Gun and Poolboy.",
source_url: "https://github.com/petrohi/machine_gun"
]
end
defp package do
%{
licenses: ["ISC License"],
maintainers: ["Peter Hizalev"],
links: %{"GitHub" => "https://github.com/petrohi/machine_gun"}
}
end
def application do
[
mod: {MachineGun.Application, []}
]
end
defp deps do
[
{:dialyxir, "~> 1.1", only: [:dev], runtime: false},
{:gun, "~> 1.3"},
{:poolboy, "~> 1.5"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end