forked from elixir-grpc/gun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
41 lines (37 loc) · 847 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 Gun.Mixfile do
use Mix.Project
def project do
[
app: :gun,
version: "2.0.0",
description: description(),
deps: deps(),
package: package()
]
end
defp description do
"""
HTTP/1.1, HTTP/2 and Websocket client for Erlang/OTP.
"""
end
defp deps do
[
{:cowlib, "~> 2.11"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
organization: "tubitv",
name: "grpc_gun",
maintainers: ["Loïc Hoguin"],
licenses: ["ISC"],
build_tools: ["rebar3"],
links: %{
"GitHub" => "https://github.com/elixir-grpc/gun",
"Original GitHub" => "https://github.com/ninenines/gun"
},
files: ["erlang.mk", "LICENSE", "Makefile", "README.asciidoc", "rebar.config", "src"]
]
end
end