From e1ff9f70b5e084a49d61e0b4a51807c1e37d6ee3 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Wed, 18 Nov 2020 19:42:16 -0600 Subject: [PATCH] small --- README.md | 3 +-- zippy.nimble | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6aa4a78..76ca59d 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,6 @@ This library works well using Nim's relatively new `--gc:arc` and `--gc:orc` as I have also verified that Zippy builds with `--experimental:strictFuncs` on Nim 1.4.0. -**NOTE: This library is in active development. It is tested and should work well, but the API is not yet stable.** - ## Examples Simple examples using Zippy can be found in the [examples/](https://github.com/guzba/zippy/blob/master/examples) folder. This includes an [HTTP client](https://github.com/guzba/zippy/blob/master/examples/http_client.nim) and [HTTP server](https://github.com/guzba/zippy/blob/master/examples/http_server.nim) example for handing gzip'ed requests and responses. @@ -161,6 +159,7 @@ paper-100k.pdf | 0.7909s geo.protodata | 0.2902s ## Testing + `nimble test` To prevent Zippy from causing a crash or otherwise misbehaving on bad input data, a fuzzer has been run against it. You can do run the fuzzer any time by running `nim c -r tests/fuzz.nim` diff --git a/zippy.nimble b/zippy.nimble index 122215b..1a3eb12 100644 --- a/zippy.nimble +++ b/zippy.nimble @@ -1,7 +1,7 @@ packageName = "zippy" version = "0.3.4" author = "Ryan Oldenburg" -description = "In-progress pure Nim implementation of deflate and zlib." +description = "Pure Nim implementation of deflate, zlib, gzip and zip." license = "MIT" srcDir = "src"