Skip to content

Commit

Permalink
Remove json_polyfill version and mention Exneus in README.md (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamthome authored Aug 12, 2024
1 parent 61090ce commit 4240eca
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Detailed examples and further explanation can be found at [hexdocs](https://hexd
```erlang
% rebar.config
{deps, [
{json_polyfill, "0.1.3"}, % Required only for OTP < 27
json_polyfill, % Required only for OTP < 27
{euneus, "2.3.0"}
]}.
```
Expand All @@ -44,6 +44,20 @@ defp deps do
end
```

Or consider using [Exneus](https://github.com/williamthome/exneus):

```elixir
# mix.exs
defp deps do
[
{:json_polyfill, "~> 0.1"}, # Required only for OTP < 27
{:exneus, "~> 0.1"}
]
end
```

> Exneus is a wrapper of Euneus for Elixir.
## Basic usage

```erlang
Expand Down

0 comments on commit 4240eca

Please sign in to comment.