Current section
Files
Jump to
Current section
Files
machine_gun
mix.exs
mix.exs
defmodule MachineGun.Mixfile do
use Mix.Project
def project do
[
app: :machine_gun,
version: "0.1.8",
elixir: "~> 1.5",
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
[
{:gun, "~> 1.3"},
{:poolboy, "~> 1.5"},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end