Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joshuawscott/lzf_elixir

LZF decompression algorithm in elixir
https://github.com/joshuawscott/lzf_elixir

elixir lzf

Last synced: about 2 months ago
JSON representation

LZF decompression algorithm in elixir

Awesome Lists containing this project

README

        

# LZF

[![Build Status](https://travis-ci.org/joshuawscott/lzf_elixir.svg?branch=master)](https://travis-ci.org/joshuawscott/lzf_elixir) [![Hex.pm version](https://img.shields.io/hexpm/v/lzf.svg)](https://hex.pm/packages/lzf)

Pure elixir implementation of the LZF (de)compression algorithm

As of 0.1, this only supports decompression. PRs welcome :)

[Documentation](https://hexdocs.pm/lzf).

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `lzf` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:lzf, "~> 0.1"}
]
end
```

## Testing

```
mix test
```