-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
43 lines (39 loc) · 1.17 KB
/
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
42
43
defmodule HPack.Mixfile do
use Mix.Project
def project do
[
app: :hpack,
version: "3.0.1",
elixir: "~> 1.9",
package: package(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: [plt_add_deps: :project]
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
defp deps do
[
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:credo, "~> 1.2", only: [:dev, :test], runtime: false}
]
end
defp package do
[
source_url: "https://github.com/OleMchls/elixir-hpack",
description: """
Implementation of the [HPack](https://http2.github.io/http2-spec/compression.html) protocol, a compression format for efficiently representing HTTP header fields, to be used in HTTP/2.
""",
maintainers: ["Ole Michaelis <Ole.Michaelis@gmail.com>"],
links: %{"HPack" => "https://http2.github.io/http2-spec/compression.html"},
licenses: ["MIT"]
]
end
end