All Projects → treeform → miniz

treeform / miniz

Licence: MIT license
Miniz wrapper for nim.

Programming Languages

c
50402 projects - #5 most used programming language
nim
578 projects

Miniz - Wrapper for Miniz lib.

⚠️UPDATE: Miniz is abandoned in favor of:

Exposes only 2 functions compress() and uncompress().

Miniz is a Single C source file zlib-replacement library: https://github.com/richgel999/miniz

import miniz

let
  str = "test string"
  zstr = compress(str, level=11)
echo uncompress(zstr)

Thats it. Pretty easy.

Small, does not include dependencies on .so or .dll files. Compiles on windows. Easy.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].