{"id":41616754,"url":"https://github.com/kiyolee/libzip-win-build","last_synced_at":"2026-01-24T12:53:24.015Z","repository":{"id":52310415,"uuid":"66622780","full_name":"kiyolee/libzip-win-build","owner":"kiyolee","description":"libzip Windows build with Visual Studio.","archived":false,"fork":false,"pushed_at":"2026-01-23T14:17:24.000Z","size":10916,"stargazers_count":66,"open_issues_count":0,"forks_count":21,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-01-24T05:53:41.212Z","etag":null,"topics":["libzip","visual-studio","zlib"],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kiyolee.png","metadata":{"files":{"readme":"README.libzip.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-08-26T06:32:19.000Z","updated_at":"2026-01-23T14:07:46.000Z","dependencies_parsed_at":"2025-06-09T12:27:24.294Z","dependency_job_id":"b6f310a8-a252-42dd-b088-f2552c8369be","html_url":"https://github.com/kiyolee/libzip-win-build","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/kiyolee/libzip-win-build","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiyolee%2Flibzip-win-build","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiyolee%2Flibzip-win-build/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiyolee%2Flibzip-win-build/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiyolee%2Flibzip-win-build/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kiyolee","download_url":"https://codeload.github.com/kiyolee/libzip-win-build/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiyolee%2Flibzip-win-build/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28728005,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["libzip","visual-studio","zlib"],"created_at":"2026-01-24T12:53:23.400Z","updated_at":"2026-01-24T12:53:24.009Z","avatar_url":"https://github.com/kiyolee.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# libzip\n\n## A C Library for Reading, Creating, and Modifying Zip Archives\n\n\n## Why Use libzip?\n\nlibzip has been continuously developed since 2005. It is efficient, small, and flexible. It is usable on Linux, macOS, and Windows and many other operating systems.\n\nThe main design criteria are:\n\n- Maintain a stable API without breaking backwards compatibility.\n- Do not create corrupt files, even in case of errors.\n- Do not delete data.\n- Be efficient.\n\nIt supports the following features:\n\n- Reading archives and file data from files or memory buffers\n- Reverting unsaved changes\n- Zip64 large archives\n- Deflate, bzip2, LZMA, and zstd compression\n- Winzip AES and legacy PKWARE encryption\n\nThe [BSD license](LICENSE) used for libzip allows its use in commercial products. \n\n## Who Uses libzip?\n\nlibzip is used in major open source projects like [KDE](https://kde.org/), [Chromium](https://www.chromium.org/Home), [ImageMagick](https://github.com/ImageMagick/ImageMagick/), and [VeraCrypt](https://www.veracrypt.fr/).\n\nCommercial products using libzip include [Lightroom from Adobe](https://lightroom.adobe.com/) and the [Kobo eReader](http://www.kobo.com/desktop).\n\nThere are also bindings for other programming languages: [Python](https://github.com/KOLANICH-libs/libzip.py), [Ruby](http://rubygems.org/gems/zipruby/), [Lua](https://github.com/brimworks/lua-zip), [PHP](http://pecl.php.net/package/zip), and others.\n\nThere is a more complete [list of projects](https://libzip.org/users/).\n\n\n## Getting Started\n\nMost Linux and other Unix distributions include libzip in their package distributions, it is usually called `libzip` or `libzip-dev`. \n\nOn macOS, it is included in both Homebrew and Mac Ports.\n\nOn Windows, it is in vcpkg.\n\nA list of available packages can be found on [Repology](https://repology.org/project/libzip/versions). \n\nFor building and installing libzip from source, see the [INSTALL.md](INSTALL.md) file.\n\n\n## Using libzip\n\nlibzip is fully documented via man pages. HTML versions of the man\npages are on [libzip.org](https://libzip.org/documentation/) and in the [man](man) directory. You can start with\n[libzip(3)](https://libzip.org/documentation/libzip.html), which lists\nall others. Example source code is in the [examples](examples) and\n[src](src) subdirectories.\n\nIf you have developed an application using libzip, you can find out\nabout API changes and how to adapt your code for them in the included\nfile [API-CHANGES.md](API-CHANGES.md).\n\n\n## Staying in Touch\n\nMore information and the latest version can always be found on [libzip.org](https://libzip.org).  The official repository is at [GitHub](https://github.com/nih-at/libzip/).\n\nIf you want to reach the authors in private, use \u003cinfo@libzip.org\u003e.\n\n[![Packaging status](https://repology.org/badge/tiny-repos/libzip.svg)](https://repology.org/project/libzip/versions)\n\n[![Github Actions Build Status](https://github.com/nih-at/libzip/workflows/build/badge.svg)](https://github.com/nih-at/libzip/actions?query=workflow%3Abuild)\n[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/f1bqqt9djvf22f5g?svg=true)](https://ci.appveyor.com/project/nih-at/libzip)\n[![Coverity Status](https://scan.coverity.com/projects/127/badge.svg)](https://scan.coverity.com/projects/libzip)\n[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/libzip.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened\u0026can=1\u0026q=proj:libzip)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiyolee%2Flibzip-win-build","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkiyolee%2Flibzip-win-build","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiyolee%2Flibzip-win-build/lists"}