README.md

# ExZstd

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

## Installation

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

```elixir
def deps do
  [
    {:ex_zstd, "~> 0.5.0", hex: :ex_zstd_reloaded}
  ]
end
```

The docs can be found at [https://hexdocs.pm/ex_zstd_reloaded](https://hexdocs.pm/ex_zstd_reloaded).

## Development (WIP)

```bash
podman build . --force-rm --tag ex_zstd -f ci/debian.Containerfile
PWD="$(pwd)"; podman run -it --rm --volume "$PWD":"$PWD" --workdir "$PWD" ex_zstd:latest bash

mix test
```