A light Elixir wrapper around eavro for parsing Avro protocol files.
The package can be installed as:
- Add
eavro
andex_avro
to your list of dependencies inmix.exs
:
```elixir
def deps do
[
{:eavro, git: "https://github.com/sifoxdevteam/eavro.git", tag: "v0.0.3"},
{:ex_avro, "~> 0.1.0"},
]
end
```
- Ensure
eavro
andex_avro
are started before your application:
```elixir
def application do
[
applications: [
:eavro,
:ex_avro,
]
]
end
```