README.md

# ExZstd

Fork of the unmantained [ExZstd](https://github.com/chenzhuoyu/elixir-zstd).

## Installation

The package can be installed by adding `ex_zstd` to your list of dependencies in `mix.exs`:

```elixir
def deps do
  [
    {:ex_zstd, git: "https://gitlab.com/chrooti/ex_zstd.git", tag: "0.2.0"}
  ]
end
```

I regularly tag releases and expect to release this on Hex soon (TM).

The docs can be found at [https://hexdocs.pm/ex_zstd](https://hexdocs.pm/ex_zstd). They refer to the old library and might be outdated.

## Development (WIP)

```
podman build . --force-rm --tag ex_zstd
podman run -it --rm --volume "$(pwd)":/app --workdir /app ex_zstd:latest /bin/sh

mix test
```