Skip to content

Commit f4cf957

Browse files
authored
Merge pull request #43 from Kleidukos/add-README
Add a README with CI and Hackage badges
2 parents 9721f2c + 5539d12 commit f4cf957

File tree

2 files changed

+13
-178
lines changed

2 files changed

+13
-178
lines changed

.travis.yml

Lines changed: 0 additions & 178 deletions
This file was deleted.

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# zlib [![CI][CI badge]][CI page] [![Hackage][Hackage badge]][Hackage page]
2+
3+
**Compression and decompression in the gzip and zlib format**
4+
5+
This package provides a pure interface for compressing and decompressing streams of data represented as lazy `ByteString`s.
6+
It uses the `zlib` C library so it has high performance. It supports the `zlib`, `gzip` and `raw` compression formats.
7+
8+
It provides a convenient high level API suitable for most tasks and for the few cases where more control is needed it provides access to the full zlib feature set.
9+
10+
[CI badge]: https://github.com/haskell/zlib/actions/workflows/haskell-ci.yml/badge.svg
11+
[CI page]: https://github.com/haskell/zlib/actions/workflows/haskell-ci.yml
12+
[Hackage page]: https://hackage.haskell.org/package/zlib
13+
[Hackage badge]: https://img.shields.io/hackage/v/zlib.svg

0 commit comments

Comments
 (0)