We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e632de commit 0f7f600Copy full SHA for 0f7f600
2 files changed
VERSION
@@ -0,0 +1 @@
1
+0.1.0
mix.exs
@@ -0,0 +1,19 @@
+# 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