Skip to content

Commit 93da416

Browse files
committed
docs: prepare for release
1 parent 89ba521 commit 93da416

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
[![CI](https://github.com/codeadict/gen_http/actions/workflows/ci.yml/badge.svg)](https://github.com/codeadict/gen_http/actions/workflows/ci.yml)
44
[![codecov](https://codecov.io/github/codeadict/gen_http/graph/badge.svg?token=Y07BA8DQ6T)](https://codecov.io/github/codeadict/gen_http)
55
[![HTTP/2 Compliance](https://github.com/codeadict/gen_http/actions/workflows/h2-compliance.yml/badge.svg)](https://github.com/codeadict/gen_http/actions/workflows/h2-compliance.yml)
6+
[![Module Version](https://img.shields.io/hexpm/v/gen_http.svg)](https://hex.pm/packages/gen_http)
7+
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/gen_http/)
8+
[![Hex Downloads](https://img.shields.io/hexpm/dt/gen_http.svg)](https://hex.pm/packages/gen_http)
69
[![RFC 7540](https://img.shields.io/badge/RFC%207540-compliant-brightgreen)](https://datatracker.ietf.org/doc/html/rfc7540)
710
[![RFC 7541](https://img.shields.io/badge/RFC%207541-compliant-brightgreen)](https://datatracker.ietf.org/doc/html/rfc7541)
811

@@ -16,12 +19,20 @@ Fast. Small API. Proper HTTP/1.1 and HTTP/2 support. Works with both protocols t
1619

1720
## Quick Start
1821

22+
### Erlang
23+
1924
Add to your `rebar.config`:
2025

2126
```erlang
22-
{deps, [
23-
{gen_http, {git, "https://github.com/codeadict/gen_http.git", {branch, "main"}}}
24-
]}.
27+
{deps, [gen_http]}.
28+
```
29+
30+
### Elixir
31+
32+
Add to your `mix.exs`:
33+
34+
```elixir
35+
{:gen_http, "~> 0.1"}
2536
```
2637

2738
Send a request:

0 commit comments

Comments
 (0)