https://github.com/michalmuskala/antidote_poison_compat
Package providing compatibility for the Antidote JSON library with Poison.
https://github.com/michalmuskala/antidote_poison_compat
Last synced: 29 days ago
JSON representation
Package providing compatibility for the Antidote JSON library with Poison.
- Host: GitHub
- URL: https://github.com/michalmuskala/antidote_poison_compat
- Owner: michalmuskala
- Created: 2017-12-17T17:25:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-17T17:26:22.000Z (over 7 years ago)
- Last Synced: 2024-10-06T10:41:31.153Z (7 months ago)
- Language: Elixir
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AntidotePoisonCompat
Package providing compatibility for the `Antidote` JSON library with Poison.
Included features are:
* Encoder implementations for `MapSet`, `HashSet`, `Stream` and `Range`
* A compatibility encoder for all structs encoding them as maps omitting the `__struct__` key.## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `antidote_poison_compat` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:antidote_poison_compat, "~> 0.1.0"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/antidote_poison_compat](https://hexdocs.pm/antidote_poison_compat).