ExAvro
A light Elixir wrapper around eavro for parsing Avro protocol files.
Installation
The package can be installed as:
-
Add
eavroandex_avroto 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
eavroandex_avroare started before your application:
```elixir
def application do
[
applications: [
:eavro,
:ex_avro,
]
]
end
```