Packages

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.

Current section

Files

Jump to
hpack mix.exs
Raw

mix.exs

defmodule HPack.Mixfile do
use Mix.Project
def project do
[app: :hpack,
version: "1.0.0",
elixir: "~> 1.2",
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
defp deps, do: []
defp package do
[
source_url: "https://github.com/nesQuick/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>"],
licenses: ["MIT"],
]
end
end