You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,16 @@ This is the official Sentry SDK for [Sentry].
20
20
21
21
To use Sentry in your project, add it as a dependency in your `mix.exs` file.
22
22
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:
24
24
25
25
```elixir
26
26
defpdepsdo
27
27
[
28
28
# ...
29
29
30
-
{:sentry, "~> 10.8"},
31
-
{:hackney, "~> 1.20"}
30
+
{:sentry, "~> 10.0"},
31
+
{:jason, "~> 1.4"},
32
+
{:finch, "~> 0.18"}
32
33
]
33
34
end
34
35
```
@@ -203,7 +204,7 @@ Licensed under the MIT license, see [`LICENSE`](./LICENSE).
0 commit comments