-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
29 lines (26 loc) · 704 Bytes
/
mix.exs
File metadata and controls
29 lines (26 loc) · 704 Bytes
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
defmodule HTTP2.Mixfile do
use Mix.Project
def project do
[app: :http2,
version: "0.0.1",
elixir: "~> 1.2",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps,
description: "http2 is an HTTP/2 client for Elixir",
package: [
maintainers: ["Sascha Schwabbauer"],
links: %{"GitHub" => "https://github.com/sascha/http2"}
]]
end
def application do
[mod: {HTTP2.Application, []},
applications: [:ranch, :ssl, :logger],
registered: [HTTP2.Supervisor]]
end
defp deps do
[{:ranch, github: "ninenines/ranch"},
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.11", only: :dev}]
end
end