Skip to content

Commit 86166b1

Browse files
committed
update read me
1 parent 67a9509 commit 86166b1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ This is the official Sentry SDK for [Sentry].
2020

2121
To use Sentry in your project, add it as a dependency in your `mix.exs` file.
2222

23-
Sentry does not install a JSON library nor an HTTP client by itself. Sentry will default to the [built-in `JSON`](https://hexdocs.pm/elixir/JSON.html) for JSON and [Hackney] for HTTP requests, but can be configured to use other ones. To use the default ones, do:
23+
Sentry does not install a JSON library nor an HTTP client by itself. Sentry will default to the [built-in `JSON`](https://hexdocs.pm/elixir/JSON.html) for JSON and [Finch] for HTTP requests, but can be configured to use other ones. To use the default ones, do:
2424

2525
```elixir
2626
defp deps do
2727
[
2828
# ...
2929

3030
{:sentry, "~> 10.8"},
31-
{:hackney, "~> 1.20"}
31+
{:jason, "~> 1.4"},
32+
{:finch, "~> 0.19"}
3233
]
3334
end
3435
```
@@ -203,7 +204,7 @@ Licensed under the MIT license, see [`LICENSE`](./LICENSE).
203204

204205
[Sentry]: http://sentry.io/
205206
[Jason]: https://github.com/michalmuskala/jason
206-
[Hackney]: https://github.com/benoitc/hackney
207+
[Finch]: https://github.com/sneako/finch
207208
[Bypass]: https://github.com/PSPDFKit-labs/bypass
208209
[docs]: https://hexdocs.pm/sentry/readme.html
209210
[logger-handlers]: https://www.erlang.org/doc/apps/kernel/logger_chapter#handlers

0 commit comments

Comments
 (0)