Skip to content
/ ex_avro Public

Light Elixir wrapper around eavro for Avro protocol parsing

Notifications You must be signed in to change notification settings

avvo/ex_avro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExAvro

A light Elixir wrapper around eavro for parsing Avro protocol files.

Installation

The package can be installed as:

  1. Add eavro and ex_avro to your list of dependencies in mix.exs:
```elixir
def deps do
  [
    {:eavro, git: "https://github.com/sifoxdevteam/eavro.git", tag: "v0.0.3"},
    {:ex_avro, "~> 0.1.0"},
  ]
end
```
  1. Ensure eavro and ex_avro are started before your application:
```elixir
def application do
  [
    applications: [
      :eavro,
      :ex_avro,
    ]
  ]
end
```

About

Light Elixir wrapper around eavro for Avro protocol parsing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages