Skip to content

Commit 0f7f600

Browse files
committed
feat: mix support
1 parent 9e632de commit 0f7f600

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.0

mix.exs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This file is only used when gen_http is pulled as a dependency
2+
# from a Mix project. Use rebar3 for compiling, running tests, etc.
3+
defmodule GenHttp.MixProject do
4+
use Mix.Project
5+
6+
@version File.read!("VERSION") |> String.trim()
7+
@source_url "https://github.com/codeadict/gen_http"
8+
9+
def project do
10+
[
11+
app: :gen_http,
12+
version: @version,
13+
language: :erlang,
14+
description: "Erlang native HTTP client with support for HTTP/1 and HTTP/2.",
15+
source_url: @source_url,
16+
docs: [main: "readme", extras: ["README.md"]]
17+
]
18+
end
19+
end

0 commit comments

Comments
 (0)