Skip to content

Commit 363e735

Browse files
committed
use hackney instead of req
1 parent 4b5d529 commit 363e735

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def deps do
3232
{:ex_aws_s3, "~> 2.5"},
3333
{:ex_aws, "~> 2.5"},
3434
{:sweet_xml, "~> 0.7"},
35-
{:req, "~> 0.5"} # or any other HTTP client supported by `ex_aws`
35+
{:hackney, "~> 1.9"} # or any other HTTP client supported by `ex_aws`
3636
]
3737
end
3838
```

lib/ex_webrtc_recorder/s3.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule ExWebRTC.Recorder.S3 do
66
* `:ex_aws_s3`
77
* `:ex_aws`
88
* `:sweet_xml`
9-
* an HTTP client (e.g. `:req`)
9+
* an HTTP client (e.g. `:hackney`)
1010
"""
1111

1212
@typedoc """

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ defmodule ExWebRTC.Recorder.MixProject do
6868
{:ex_aws_s3, "~> 2.5", optional: true},
6969
{:ex_aws, "~> 2.5", optional: true},
7070
{:sweet_xml, "~> 0.7", optional: true},
71-
{:req, "~> 0.5", optional: true},
71+
{:hackney, "~> 1.9", optional: true},
7272

7373
# dev/test
7474
{:excoveralls, "~> 0.18.0", only: [:dev, :test], runtime: false},

0 commit comments

Comments
 (0)