summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--src/zip.cr2
2 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index d0bbc3f..b424693 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,8 @@ Read and write zip archives natively from
*Features*
* Read and write zip files
* Native Crystal, no dependencies other than zlib
+* Stream writing (e.g. write zip to socket, pipe or other arbitrary,
+ non-seekable IO)
* ZIP64 support
* Store and DEFLATE compression
* UTF-8 filename and comment support (EFS)
diff --git a/src/zip.cr b/src/zip.cr
index 4f007db..583191a 100644
--- a/src/zip.cr
+++ b/src/zip.cr
@@ -38,6 +38,8 @@ require "zlib"
# Features:
# * Read and write zip files
# * Native Crystal, no dependencies other than zlib
+# * Stream writing (e.g. write zip to socket, pipe or other arbitrary,
+# non-seekable IO)
# * ZIP64 support
# * Store and DEFLATE compression
# * UTF-8 filename and comment support (EFS)