RustyZip
A Python wrapper for Rust's zip crate that exposes a ZIP file writer with legacy ZipCrypto encryption support.
⚠️ Disclaimer
This project was primarily created using Cursor with LLMs. While it has been tested, please use it at your own risk. The code may contain unexpected behaviors or bugs.
Background
This project is a simple wrapper over Rust's zip crate to support writing ZIP files with ZipCrypto encryption in Python. While there are existing solutions like pyminizip, this project addresses several limitations:
- pyminizip lacks pre-built binary wheels on PyPI, making installation more complex
- pyminizip ships with an outdated version of zlib
- pyminizip's APIs are not very efficient as they only work with file paths instead of file objects or bytes
This project is not intended to be a full-featured Python ZIP library (there are already many excellent options available). Instead, it focuses specifically on providing support for writing ZIP files with the legacy ZipCrypto encryption, which seems to be missing from other Python ZIP libraries.
Security Warning
⚠️ IMPORTANT: The ZipCrypto algorithm is considered insecure and should not be used for sensitive data. It is provided solely for compatibility with legacy systems. For secure encryption, consider using more modern alternatives.
Requirements
- Python 3.9 or later
- Rust 1.88 or later (for building from source)
Installation
pip install rusty-zip
Usage
from rusty_zip import ZipWriter
from io import BytesIO
# Create a new encrypted ZIP file with ZipCrypto
with ZipWriter("example.zip", password=b"mypassword") as zip_file:
# Add files to the ZIP with ZipCrypto encryption
zip_file.write_file("path/to/file.txt", "file.txt")
# Add data from memory (must be bytes)
zip_file.write_bytes(b"Hello, world!", "hello.txt")
# If you have a string, convert it to bytes first
text = "This is a string"
zip_file.write_bytes(text.encode('utf-8'), "string.txt")
# You can also use file-like objects
file_like = BytesIO()
with ZipWriter(file_like) as zip_file:
zip_file.write_file("path/to/file.txt", "file.txt")
zip_file.write_bytes(b"Hello, world!", "hello.txt")
# Get the ZIP content from the file-like object
zip_content = file_like.getvalue()
API Reference
ZipWriter
Constructor
ZipWriter(path_or_file_like: Union[str, BinaryIO], password: Optional[bytes] = None)- Creates a new ZIP file. The first argument can be either a path string or a file-like object that supports binary I/O operations. If a password is provided, files will be encrypted using ZipCrypto. The password must be non-empty bytes; an empty password is rejected because it derives a predictable key.
Methods
write_file(source_path: str, entry_name: str)- Adds a file from disk to the ZIP archive.write_bytes(data: bytes, entry_name: str)- Adds bytes from memory to the ZIP archive. The data must be a bytes object.close()- Closes the ZIP file. This is automatically called when using the context manager.
Features
- Create ZIP files with legacy ZipCrypto encryption
- Add files from disk or memory
- Support for both file paths and file-like objects
- Simple Python API with Rust performance
- Cross-platform compatibility
Development
Building from Source
uv build
Running Tests
uv run pytest
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
Release files for rusty-zip 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rusty_zip-0.1.0.tar.gz | 31.2 kB | Details |
Built distributions (wheels)
Total release size: 56.3 MB
Release files / rusty_zip-0.1.0.tar.gz
| Download URL | rusty_zip-0.1.0.tar.gz |
|---|---|
| Size | 31.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
31c32e80d8273c72d653a35c6278cb4169b13f3f2ab7eaaa6dfa748bdb0936fe
|
|
BLAKE2b-256 checksum How to use checksums |
65df93e95fdcb116a88ecec8ed6aebcfff6368fe6b6cf6506df1a37e060e2893
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 710.2 kB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
31342644b962d97df91eb2809b877737951e8d6dd327df040061e6ee7186ab97
|
|
BLAKE2b-256 checksum How to use checksums |
edce4ef95a08be11336ee483f0a2907d53e0f59acb2b5b196a14955e75876b11
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl |
|---|---|
| Size | 741.3 kB |
| Tags | Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
b3c030dd8065c3e97b56ce683ba95b858059de46f6ca0e8781823792f5ed5c69
|
|
BLAKE2b-256 checksum How to use checksums |
0d189a931822edc876d2fd86ec060ed7cd20b927710bfab66b2268740f280088
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 770.8 kB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
9de8ea745d087011851342afcaf14710722087a434c966fdcd0e25c436b101af
|
|
BLAKE2b-256 checksum How to use checksums |
e1ffdc95e0051ce07c00d122e2fc4ddcf34d6714f8c3e16285b900ce6e9c9f59
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 673.6 kB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
38e83d225e932ee3addf5abcbb939e2908e7e7234561f302eda309e0d2000f14
|
|
BLAKE2b-256 checksum How to use checksums |
427631f466282799c297215aa4b2332acf320c7d50959e5c2a3e1aedeb13322f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 506.4 kB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
6f7b6c5cf49641bcc37f7e336ae82a6832ea3e412e68fe09890efb962164ec53
|
|
BLAKE2b-256 checksum How to use checksums |
22d9d19081a6f090cd0447c78bab6b76d70e8fef6f0d48027f76bd3c60b4e52a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 530.3 kB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
d123fa5b12631e4a245337a3c82628f957328d20599ef25d91cd2a58639810c3
|
|
BLAKE2b-256 checksum How to use checksums |
146ef9b9e1ebf19937d0ee9b1a9a0ee534ce539c9291b32f15fd7cbb499adc4d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 639.1 kB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
7a68460dfe3d819efffe92f8ff63c8c1b1ff2f7cd59961d88d4e8e21e0cd76b0
|
|
BLAKE2b-256 checksum How to use checksums |
da08cfa3bca6b2d6d6d0d9007b19297be67809a9f74cdbd81f71d336dd7f3ff6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 495.9 kB |
| Tags | Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
a5d349b15b1b8ad9bef65c4fac97d8c36cee539f7489b4f41266dfd6d7c10f59
|
|
BLAKE2b-256 checksum How to use checksums |
03c5a17f3b7745de4b7464a837f29df9904659a0a0388aa0dd8604e19e7e17bd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 496.7 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
587360b4534c8b101d4846d2e69159a487f7f2eddee84a7275855647cd44d22d
|
|
BLAKE2b-256 checksum How to use checksums |
b58a9bc6c2ac82d715a1c0ece3925e1fd99b0ee1a64e8408ffc050713d4769c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 534.1 kB |
| Tags | Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
0263c1d14f75c36de17616ea90dd228e27312a92a0732be407742390d556e19d
|
|
BLAKE2b-256 checksum How to use checksums |
bf124812a95debbd731f119151bc8bcce41602a8e59e1c6797fe0725374941d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 504.3 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
e1a93b1490c7cd62da7668c4beb370e923291cef4d7d0618ed512223f1d6e252
|
|
BLAKE2b-256 checksum How to use checksums |
a5dfccb3e0e40bb2a9a45e99eb6e5ea77fe1cf33584ccf2ba1c44f8d6aafa719
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 527.7 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
fea6d67cc402c9cde9f85cdd3a1d95ef1be2a7657ab7600f2a44c856176f7a86
|
|
BLAKE2b-256 checksum How to use checksums |
9ca1e29deb4f2605bf44ea154b946cd37811fbd7bad29297fe07df33d41f5c50
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 504.3 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
be2e8d49d5ed684dd6f6afdfbf7bfb238057b84f7c56fc20498547cb8ef7868e
|
|
BLAKE2b-256 checksum How to use checksums |
26803d972c3f54e930cef5cf800f443eb18fcd2a9e55b19076bc0f3c9edc36f0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 529.6 kB |
| Tags | CPython 3.15 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
b818a19af22cb515280100cce21baba3c2d8867e7dd14f04cd0657a4f004ab8f
|
|
BLAKE2b-256 checksum How to use checksums |
cc1b34ba010efdfeadc9cb12356c5e43ec6bee96ce7c1b39caedf4a4b8c4d696
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 708.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
843a94b68d41b860734add15c88c901aa274f0d8629a69e9ea2832ed2ec5ba02
|
|
BLAKE2b-256 checksum How to use checksums |
e5bc4f5077a78960b079686bb8915aeceb21bfb3304fe73ae41e232c48adbe7e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl |
|---|---|
| Size | 734.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
852065bcb365fd2b6eb6a75000edd947e2bad698cc5abc43f349abb5c60469fc
|
|
BLAKE2b-256 checksum How to use checksums |
310a7d8a6a0ff221302d62dd0ac0558bc2cac86fd2540ab1bbff64963d47d5df
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 767.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
ee422f306e27cfe9b68c5387d42484b9b6f7082a252e11ca03ec59407bdd7378
|
|
BLAKE2b-256 checksum How to use checksums |
b6c5a692b6f06a169a2fa1c86e7f5877ec63415b5caf036255a9dd24f269913f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 668.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
7dd1df3d9b483d41783bb45a0b0764ca384f09d5024462f808ef21f043525569
|
|
BLAKE2b-256 checksum How to use checksums |
76b21589e0b3b3f6bcadee571f6a1aead10a2736f936efbced870b4f32925fd9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 504.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
521b3a1bd4e7e0dd5ffdf6bc6b8bb0c7f81bbd7dec1734ccb2807e27d87f65e3
|
|
BLAKE2b-256 checksum How to use checksums |
56a4b93cb48558b29aa89e4c7b08614058a88eb81411ab43c4148d94fdfcf664
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 526.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
6cc9410ebf3796a1779df1ea82028b43dd201f6cf39440382a39c82dc850ce9e
|
|
BLAKE2b-256 checksum How to use checksums |
d634a5b1186e2e3baa8b8bfc74d9a29507528693241c726aa86096ecb5351020
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 633.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
8de43853095aa3b5e88fbdea808b5e00fed7288e0d5d57f673763d6018c2c621
|
|
BLAKE2b-256 checksum How to use checksums |
3f7eeb8ff5d7ef0a08495c81aaa6bb4ff63ca30b0f48bc5f94b5eab18babe33c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 490.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
27a4f5fb97a6d81a2e031eb6fc31a1e3a71967c0ec48835ea1b39af045c5815c
|
|
BLAKE2b-256 checksum How to use checksums |
488bc04dc68f9af0c927cd3fc135e4284278d776404e691d7567eddae068ba76
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 490.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
0991ce4a8cbbc1ee8d09085b62a2a4af1ea1dd44d89bf4e193bca7733e16ecc8
|
|
BLAKE2b-256 checksum How to use checksums |
81cdd910d6781c83e39c5ae2e4107ae8ccea38be6ce532f71d4cf1004aabcc08
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 526.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
b1c557fadf3632e981cd62b45366c80e1f42257f7d60cbab92b9d17f70a02126
|
|
BLAKE2b-256 checksum How to use checksums |
36224bedbbd7a4c7a144f4b7c19650cd4caf89378214211ed0f68528d26c03a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-win_amd64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 348.6 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
da924f0a5180d896ebd72f9d7ab8fb8fa7554a89dd4ca22efc5532740d794035
|
|
BLAKE2b-256 checksum How to use checksums |
3313221be476f37e40151780ae23de8ab60bf1b55130f0ca5b28eb2d916201ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-win32.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-win32.whl |
|---|---|
| Size | 326.5 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
912df2f4ebb4811f6d9a6bb6d1afc3a657fdfd8f34f9cdb7ef0b33a1eb0c2da5
|
|
BLAKE2b-256 checksum How to use checksums |
99dd0c42f9cc215c55957b24e5fe848e563128fe5b0353a52dbcf4b8805fe125
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 707.7 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3d16ac0506a43647f55b6c1f4dd17ea9800485143bd59baa2652f78591753ffa
|
|
BLAKE2b-256 checksum How to use checksums |
d8b80906a09d8c591f8481417fd811267486e5470f2b19a7eed8cc5689116da4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_i686.whl |
|---|---|
| Size | 735.7 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
b6608646d06a5e452e55bbbb7b214490f11639791eb83c237ce397b7852a0804
|
|
BLAKE2b-256 checksum How to use checksums |
0518af44242734881878d4c47d34d41e9064ec4bc95e485693390af34e5c530b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 768.0 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
02a162562c29c2d5e018f56a8248c67357baebc04b4e1a0b42d397f850240e8b
|
|
BLAKE2b-256 checksum How to use checksums |
e6222ea22b626225a3edb9b81ff3a6a280b848a7eb3e6159b697a99906d778de
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 670.3 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
49add29f72f0ea013b16571b79b04ee5b7e4d60be231e9dda0588eb18dc18b28
|
|
BLAKE2b-256 checksum How to use checksums |
fff3601079b7c987a1b0044564d996db0a8ecc1f80363a36586e9c8ff825ae9d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 503.7 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
4179dce64a8d666c44af3df55da92903cecd154bf5f54071afe5a21c22100495
|
|
BLAKE2b-256 checksum How to use checksums |
0bc8d3810e1502d826fff2d33faf594ea64dbd0b1a9f6b6972daa83d6ee07c08
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 526.2 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
46de15f2b673c0b0392346e06debc444973651c6a39e3cae9fe211cb71dba415
|
|
BLAKE2b-256 checksum How to use checksums |
6030e162fa707dcd805436e6df109979e68fc86643bd72b92395389ea3f67643
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 635.7 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
f429ea509ca229ad53157b0455e77f2c8275c5dc41ab5064b8cb954c1e2e60ab
|
|
BLAKE2b-256 checksum How to use checksums |
0740cb4bcc874704d158ea120f0237e60f85e99649449ce445d2ff5a772db03d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 491.6 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
8a1777ccff20878950a7f6981e74702a43187f9d009cf4afabdffcc408ccd254
|
|
BLAKE2b-256 checksum How to use checksums |
b26f47111c8648dda7e5d5f74e5e44333dc4c1074d037083d3463705c286dc3b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 492.8 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
56f4c9ee68b97c6b5f9a344d55df053e2e163d28b8915b439bf6fecd4175428a
|
|
BLAKE2b-256 checksum How to use checksums |
97677225f2e8258a10f52bda119136a11c1919e834ba9e518d5aa0c367a2d9bd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 528.0 kB |
| Tags | CPython 3.14 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
8af7c3e3af66ddc353b95eb2e143bc3e24ebd6c7bc2911d2d79bc288e6c05fe2
|
|
BLAKE2b-256 checksum How to use checksums |
614bc900fe0dffae860a8034b0c7b92eb8e41f669b8b4bb29f2d0d6e750246eb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 442.3 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1f3ef1c7f15d91c276b969d186a57726d3cf928e8bb9725464066cbe58b1e0c7
|
|
BLAKE2b-256 checksum How to use checksums |
7758a380d96b2f26ac662c2454b5f3084e3949bc6e24c987d0e45e3069c85c2b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl |
|---|---|
| Size | 454.0 kB |
| Tags | CPython 3.14 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
502f5849b51b2c4af126d0ce03e5b6d3df9e82305ce34b8d897611629c197210
|
|
BLAKE2b-256 checksum How to use checksums |
41add76b5933a06e47968c39a30788d3fdc5f01639af792a7697dc2ca17aff9b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-win_amd64.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 347.4 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
97342a6cc95ab3e890cae5adc12eb10ac9e6c17ab0ef7bb30c3a24e184a994b9
|
|
BLAKE2b-256 checksum How to use checksums |
c9b0de395aa747482e4881d90320c0a34b5d0a649fa37801c3eb8faa9315b6b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 706.9 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
330cc604d2d85c36794e0f86ae96e0e78eda909af764cdf56b077830770885e5
|
|
BLAKE2b-256 checksum How to use checksums |
72aa50e17b226461239a593bdf8d09aef01e472515080172abeb48e34eb6cbf6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 735.0 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
5c4c66a844b6de17e9b88eb9e55c0900d02d125b65cbbdf16792f474e5c51a9f
|
|
BLAKE2b-256 checksum How to use checksums |
fec236deab49d4a8f45f76a9c1733e3f0a5ee15980369e505a258970a233b8b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 767.6 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
0e1926456870bd8fa5a4e618fa5a8e45248b775a8236ab8ababc0de58f564e0d
|
|
BLAKE2b-256 checksum How to use checksums |
ff747b651dbb03d95032166efc2b64c8a32431741af828c24c27a56cfa5d589f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 668.6 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
c9ee4a0af9ea85c18115acdb9d22b88b3e58927f643235a37914bf6ab4d9e28d
|
|
BLAKE2b-256 checksum How to use checksums |
0c428828209dd467ad409b71c29cc4778e370bdde0ab70124977b030ff2365af
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 502.4 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
8ced08cc3cbf2310d385926c072c3fa99ee4383c8c2902f9b1af3a5378932835
|
|
BLAKE2b-256 checksum How to use checksums |
13f0171aa3ad286f42019fbc3d8637102bc20af1d8da66ad1244b6a35896d329
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 525.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
b3579d332592715605cb0d7bbe05ce1ef77020d98be4853523bbe09f09c5f0e7
|
|
BLAKE2b-256 checksum How to use checksums |
8a66d6aa72c3e6e1a778e3f9fcd4d61e1e4b6ff6d280e175c7fbd8bb0456ae3c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 631.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
88cb29ab8d4ebb68ddba35493f9e32c25e4f94805394403b1877be79313aed55
|
|
BLAKE2b-256 checksum How to use checksums |
db82c749ecb00bacdaf00e19eaec8a87d1c14af5db3286c734691500c7dd1359
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 491.4 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
011cf643d74e8faef9d29b0360c75c973600377b8a05c6c02a5cf5d294971b6b
|
|
BLAKE2b-256 checksum How to use checksums |
d5cb5fb84811ba3301a064c2676e058285ffa2815c2f0cbdb06a83b77f702336
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 490.5 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
14741d8a6f39f590be3aa63011af22af24b257fb9625f6655f06ec5ddd7e0f84
|
|
BLAKE2b-256 checksum How to use checksums |
55612c7e9427d89c479d315a2ba6d18160d72b6543a06914c73e5820789a482b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 527.8 kB |
| Tags | CPython 3.13 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
45e447e9065f740fb47f22dcb4deb8b0e75405c591fda53fa02b87b52f620093
|
|
BLAKE2b-256 checksum How to use checksums |
fc10e677079b7ca910ed746b3dedaddc3e8391f944cc67c423d4ca47bd9b814d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 440.2 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
207f59dfab2c04ce51aa74d8e58abe4d96c3212e430cc9bfa5b710fea21d6e49
|
|
BLAKE2b-256 checksum How to use checksums |
74a842a7e4c1488214696f6fcfa02952e64f1637ca56def68715986c76ecf0e9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 453.2 kB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
05dfed8b2a378606ca9ab716471e0efaeac5d2eed651b388c09dae6c7ced769e
|
|
BLAKE2b-256 checksum How to use checksums |
34a5dbc033b052964094f3392fa944fe33a318286dfac28854171fe9139beacb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-win_amd64.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 347.5 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
378f64d47fd5204ae3c76a1b0e73c45211a580812dbdf74b29075fa5235c7fc2
|
|
BLAKE2b-256 checksum How to use checksums |
7f2c74ca2c995f7d997a1d1d9ca21de127a229b24b4514af8a4428b1d3c199a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 706.2 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
235dde6ebbe55e7b09ccee114de7a73db4962328f35e974efdb71beff7f44f73
|
|
BLAKE2b-256 checksum How to use checksums |
a9c6709f88fff6892a69a42b1857328fe52aefa9b9e540bafc4cff5ae007fb02
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 735.5 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
099ab92c4e5841328065f6f57e6f6d18c5ecc5c373cad456bc67318b615f6b8d
|
|
BLAKE2b-256 checksum How to use checksums |
bd1d14e25a0ed76597d6b15e970450fb749638e970eda948dadd6d9befe61eb4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 767.9 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
429ace1cce05f93c330e874748f9ac698a75817e36a6d390839f08a22edbb2ab
|
|
BLAKE2b-256 checksum How to use checksums |
da891c4934f65da74f77263e1ed00bb0b8b7102101dad887a4a3e622804d1f85
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 669.5 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
3a908fc8e41c6b1b2a46baaae9199bb8414871dcaa5c6e9bf668947117f36e81
|
|
BLAKE2b-256 checksum How to use checksums |
03b9ee0eb7b6bbb1bc723b43fd62cc33e1a662d3a98a68996fc90dde2239df45
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 502.0 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
126de22d4b0c3fa980a1ee9fda184a184aa63b7274d723c322e34c2208b7a7b0
|
|
BLAKE2b-256 checksum How to use checksums |
290d71ed3ae97ced3319bdee2100d324949f3dd01ad7a919c4043c5a7e833f2d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 523.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
7d6dccfd31a6b774d1eca6374b9ecc12cff7dab3f296fef7983e3300c3055bcc
|
|
BLAKE2b-256 checksum How to use checksums |
e05b4235eec9e184379f28bab2d2967a57cb336d0b26d7bc44f10158d3d351c5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 634.7 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
5011a4b102608863e20d731b02037461f581f5a9d7243cf8c9bfdb5a3739c34f
|
|
BLAKE2b-256 checksum How to use checksums |
84f476bf75c64c634c88aa0bee4a63d2d6197ba86449ae7198111329ee6ce0f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 491.0 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
8b2ba13141e9f00dd35d27fcd461c41a3aa5b66bb548dacc05f516b6202a2657
|
|
BLAKE2b-256 checksum How to use checksums |
ee6ac832b1268c1dd77441d476b8bb3a83d923616d97386b6f3ca3d0e5ce26ad
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 492.1 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
f35fa02aab43116e55ea072fe8505789cd9ad83b1fe38a39e3a47fa267cbfe61
|
|
BLAKE2b-256 checksum How to use checksums |
de33243be3b219ae2fe94152a464fc4c9224353677fb56af3602371ac54e96e9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 528.0 kB |
| Tags | CPython 3.12 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
db99220b715eff114c9b0d35b50fa512a48a12f427c833a7fe1a9e7ff01b8987
|
|
BLAKE2b-256 checksum How to use checksums |
8f4b52fc15a1838c9cb2ebb61eb0d2612186cd85e78204a990c5a4bc3ee40001
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 440.0 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
5be49b4f100f6849c201ad3636882120e27cfde059f1450d12707b1dcf968a80
|
|
BLAKE2b-256 checksum How to use checksums |
9a75ada4683b8b7d9fe274805bc6a7c8d1242a38fe952fc2ec0cafb0edb498e7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 452.8 kB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
f609829f09da6f798998e6837eaaf5ee60c2ff6098c947cddf4e36a7597e2c52
|
|
BLAKE2b-256 checksum How to use checksums |
740ce9f89f46b883660da5847b1fadf77ef7595909a5d7af628620a2c2b4bee6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-win_amd64.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 349.7 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2ac95a52a0d2f8950dab7864cd4584f73433c7b47d469b3b55c0ab09e5ff7c98
|
|
BLAKE2b-256 checksum How to use checksums |
42cf8e0df1f3a772c6bcc1dac474afecbd630601bdd13b7eb2f5789ea68f284d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 710.3 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
341d1804b4dc762c79f0dadd90aa681474841be2a67a51374991829852e9e86a
|
|
BLAKE2b-256 checksum How to use checksums |
9900122d18df61f44e6bc80d296dfcb23400541cc7dd613943865a1a05011716
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 740.8 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
642768bc7ad531961c1acb0c73c1a527597c262d44796b122ada868c4176d9e7
|
|
BLAKE2b-256 checksum How to use checksums |
622968b11c3375f69e4af5a8ec5c2d4a13aafd16928f4107365ded837f620077
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 770.6 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
e6428a1cd0cba9d7aacfdad8d1d192ca2b25dc1d61b223497951ca8355c8eaaf
|
|
BLAKE2b-256 checksum How to use checksums |
23e2730c3893d6c910009a80156dc6517d0ecf0ed9e3ff20c71db2f50ae7a212
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 671.9 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
0f4ea154759479fddd41475a5ebe2e89308398cfe0a820db8512f7427af43996
|
|
BLAKE2b-256 checksum How to use checksums |
b7a9f8856db01a26a82ab0ff796a4bbf221e5a0c1c2370e3326c2e6527a8d4a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 506.8 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
3871d1a1daf1bc816ea1f0032fe45dd7087957b4e725820fcdf3c10ecd2b274a
|
|
BLAKE2b-256 checksum How to use checksums |
616bc046b27efd2ff6f78b1a0a8f252ee739dedbb3e9ee78fdacaab8719df96c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 528.9 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
95f1658bf74bedb6f6fde532a23c8803fe3e3c8401e8ce09262b5605db1cc454
|
|
BLAKE2b-256 checksum How to use checksums |
6944b75149a48e36d320bdbba05b695e5d572aa4c3864a4fe88176192750c3fb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 637.3 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
1db01d3fcb1cdd906ec886e6d7c4593e96b5591441734739c1e3a4a119c31c27
|
|
BLAKE2b-256 checksum How to use checksums |
4e13ab31b4c06b612e8497e1670e15b6624b96331d5467dbdca0f56cae684966
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 494.6 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
1fec17eba50012631ed4bf78c884341d83eb859473fc76a10ab110124e3b0c90
|
|
BLAKE2b-256 checksum How to use checksums |
6117c1d2db1b00e2ed8783f10bb08c0292f10eab1065cef8d1c6ad09bfa616b7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 494.9 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
a04b1da2e0dc458e8147348e1f062f6932ad675675b99f31b2259941b12b1236
|
|
BLAKE2b-256 checksum How to use checksums |
8b21e5d2e23b9b6d5adaec07dc3325db20a9e8d6b68151a47da81a7ff19e8309
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 533.2 kB |
| Tags | CPython 3.11 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
20399bb3aa4805b050aa9845ad8778813dfc309b0285685feb2047c234a0dfcd
|
|
BLAKE2b-256 checksum How to use checksums |
5757c325b8aec344d524834d4e01e90901939234817d1ee0ba2b6cd27b47c70d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 444.3 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
fd538db882cb955639ef41044191efccb632d65fbe556057708fc8f6ac5d2373
|
|
BLAKE2b-256 checksum How to use checksums |
0632c9d71fe118e84e8fffe2c627089eb71744d19463f48dc773352fae2ce98f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 453.6 kB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
777e6b2dcf61b65393c1c132528f36f5c4f47d57ee5678e352b54edadbc75bba
|
|
BLAKE2b-256 checksum How to use checksums |
76e43b6bb2dc6b94e874b7595aa33988c6cc522d778e3cb5cf2db3a283f5cc3f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-win_amd64.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 349.6 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0127a5da6525dc068b875a76bf39b78f38e2427b6d7f82aad5ba02c87a7ed7b5
|
|
BLAKE2b-256 checksum How to use checksums |
6a3439716208332621e58296611fbf71cb6c3dee1218252732b3e035f0d6a958
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 710.4 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
0e2f7fddbd6f88755863a47ac772889e4f444e4b78d5ddf531e0059692d0087b
|
|
BLAKE2b-256 checksum How to use checksums |
8af852cadc16323859f5df73e69d36791a5963efa02ccbf900535bb7d8a4d295
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_i686.whl |
|---|---|
| Size | 739.9 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
ccecdc9530831d766cca2c05e737da52a257f9f4d406fee1d05c86b0f7c5796c
|
|
BLAKE2b-256 checksum How to use checksums |
a02d3124b15c51605e0413649ea32c03dbbd160220d482ff652122b7d1971c69
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 769.8 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
a9d1d15900186dd5316f0d0961676b82f4d9aed82258237b3bc5f7895792bcc4
|
|
BLAKE2b-256 checksum How to use checksums |
429c74e8e3b706a985905e50fa1b6bc46d77d006a453e1c3775dc66438b07694
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 671.9 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
bb2f401bf8e9ee4d906078680278a01779c258ea2d8c9b1af7494de64e31c865
|
|
BLAKE2b-256 checksum How to use checksums |
3571b74a446bd2825013dc708eced5bc186efbed85e2c1c660f393da0d5cdb7a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 506.7 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
2aca1c763b51916f68b648c34b770324ded00b2f2ccfa8080758dd996139aad4
|
|
BLAKE2b-256 checksum How to use checksums |
58d7de50c97d43b81b59ea75084300bd1aad3163040ca2bdda4b5c280469ad34
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 529.5 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
677cae7b92a8754fe20431c2f5bed9d1f4d3bf471d5466a288161b09a6ee8779
|
|
BLAKE2b-256 checksum How to use checksums |
e10003727f252b3b17043334a3dfa0b99a1eb891efaa263ed65f6df79782c92d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 638.2 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
060d8c5ac77698c0734975eadbd5576b6cb16f065879abd1f661266eb03d6be6
|
|
BLAKE2b-256 checksum How to use checksums |
5e312e9bc0deab44313174b0581c5349bc316f83f9855f1fed7ba56922f4f666
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 493.3 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
90cd048601fb17cb5ae84cf893924406e74afb4e02cd769c75130586da3dea1a
|
|
BLAKE2b-256 checksum How to use checksums |
1a94cb1ab83315d2a3e102502e3647f7e7c048e1eb474264f157cb22acafb222
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 494.8 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
057ee85046e5695e2fd4a9de3a866b16cf5ae3f670f43b80b925d95c13c8d8f6
|
|
BLAKE2b-256 checksum How to use checksums |
2656d0dbbb9989290fdfa97835796101af4acd6021ed1081873579c28f693aed
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 532.9 kB |
| Tags | CPython 3.10 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
e8cb36c74d06afe24391b6172abfa84e6ce79172b8944dc383eba8dda5b5b0c5
|
|
BLAKE2b-256 checksum How to use checksums |
00ae10c8dd2bd7179f2a57cf39ff80f15f98b6d7390daf7d1f7f5df9087cb1b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 713.2 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
dc6502a022db0244da7b1b57a5e49ccaadd942518e11b61893d0b705381a1929
|
|
BLAKE2b-256 checksum How to use checksums |
069e14c1dd4ab7e5f6f68f8c08faa9ac17383db8122943185c29f585e51d8002
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_i686.whl |
|---|---|
| Size | 743.0 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
3a0b87e86cfad0bfacc0f7d44e2c5cb4467eb80f710e4aca2e2db8ac53230d79
|
|
BLAKE2b-256 checksum How to use checksums |
3f2b6c202031f48104d3bceba732be4a18850eb5b8a92b166670d151cf0b6f4f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 771.4 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
55204646ac9139087df2fa66639d6d31be0779757f0d4e671d4254a5c3846701
|
|
BLAKE2b-256 checksum How to use checksums |
1f494f9caac6a950a9c09d42da62c7b7a14976378da682e951aa5f1935e4c0f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 675.0 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
9f95e855231bc12935653a54b556c18d60207ed3b07f458565f52045bb87f0ee
|
|
BLAKE2b-256 checksum How to use checksums |
c7df7cb0103a5197367c4e578ea08a1035330dcb5afae041dea07a6d4814a7e1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 509.5 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
1d41aa5a13a141439e75c0b76b52be35a8689a9cc94d00a85fe44592a16311c5
|
|
BLAKE2b-256 checksum How to use checksums |
7068269a6bf501d2ad181402b35991d769095dbd3fabbce88a9979b052823808
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 531.8 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
4b3b87c7aa22bea6b2af5e82cc454ca62e87e8bdf7eaba4cfd8adde1fbb76f36
|
|
BLAKE2b-256 checksum How to use checksums |
6c949db06eda25d64c6a2b6349c0d1083c2fd6979f437a3eca09db7d0bb5c055
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 641.7 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
e302196060767e401b9eded276da644b00523e53cb158e6dfab340467f895a7e
|
|
BLAKE2b-256 checksum How to use checksums |
02b74078408e9eee2e3d0363a2e27f7035a6c3d5655d1cd9a9d7a3f81272a8a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 496.0 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
eac68e72466dd6236e304723083665c1e0aa09329e1910189895ebc9bbfc881a
|
|
BLAKE2b-256 checksum How to use checksums |
3456b7d5a3c5d72100b5cb3ae5dc5780bded52bc21ec96f52707c74be7bedfc3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 497.6 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
3c17a9a149b7ba5fb4bc041c7064fb2673e34f01b8be43ab10ba50844ca4c932
|
|
BLAKE2b-256 checksum How to use checksums |
9cac3908d39cfa8cffb0693736ac6a7463940b76f143d8a732f2124d5d3d2279
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|
Release files / rusty_zip-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | rusty_zip-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 535.9 kB |
| Tags | CPython 3.9 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
f82925ad2bf166cf6e9759cfb037f8197bde6d54ceb9adc2aa1c1d5bf808f34f
|
|
BLAKE2b-256 checksum How to use checksums |
e885ccc838b8906264c47dd5693a59fbe61de7cb9199f4769b7c2c750927e5d9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.15.0
|