No project description provided
Project description
Rust-annie
A lightning-fast, Rust-powered brute-force k-NN library for Python, with optional batch queries, thread-safety, and on-disk persistence.
📝 Table of Contents
- Features
- Installation
- Quick Start
- Examples
- Benchmark Results
- API Reference
- Development & CI
- Roadmap
- Contributing
- License
🚀 Features
- Ultra-fast brute-force k-NN search (Euclidean & Cosine)
- Batch queries over multiple vectors
- Thread-safe wrapper with GIL release for true concurrency
- Zero-copy NumPy integration (via PyO3 & rust-numpy)
- On-disk persistence with bincode + serde
- Multi-platform wheels (manylinux, musllinux, Windows, macOS)
- Automated CI with correctness & performance checks
⚙️ Installation
# Stable release from PyPI:
pip install rust-annie
# Or install from source (requires Rust toolchain + maturin):
git clone https://github.com/yourusername/rust_annie.git
cd rust_annie
pip install maturin
maturin develop --release
🎉 Quick Start
import numpy as np
from rust_annie import AnnIndex, Distance
# Create an 8-dim Euclidean index
idx = AnnIndex(8, Distance.EUCLIDEAN)
# Add 100 random vectors
data = np.random.rand(100, 8).astype(np.float32)
ids = np.arange(100, dtype=np.int64)
idx.add(data, ids)
# Query one vector
labels, dists = idx.search(data[0], k=5)
print("Nearest IDs:", labels)
print("Distances :", dists)
📚 Examples
Single Query
from rust_annie import AnnIndex, Distance
import numpy as np
idx = AnnIndex(4, Distance.COSINE)
data = np.random.rand(50, 4).astype(np.float32)
ids = np.arange(50, dtype=np.int64)
idx.add(data, ids)
labels, dists = idx.search(data[10], k=3)
print(labels, dists)
Batch Query
from rust_annie import AnnIndex, Distance
import numpy as np
idx = AnnIndex(16, Distance.EUCLIDEAN)
data = np.random.rand(1000, 16).astype(np.float32)
ids = np.arange(1000, dtype=np.int64)
idx.add(data, ids)
# Query 32 vectors at once:
queries = data[:32]
labels_batch, dists_batch = idx.search_batch(queries, k=10)
print(labels_batch.shape) # (32, 10)
Thread-Safe Usage
from rust_annie import ThreadSafeAnnIndex, Distance
import numpy as np
from concurrent.futures import ThreadPoolExecutor
idx = ThreadSafeAnnIndex(32, Distance.EUCLIDEAN)
data = np.random.rand(500, 32).astype(np.float32)
ids = np.arange(500, dtype=np.int64)
idx.add(data, ids)
def task(q):
return idx.search(q, k=5)
with ThreadPoolExecutor(max_workers=8) as executor:
futures = [executor.submit(task, data[i]) for i in range(8)]
for f in futures:
print(f.result())
📈 Benchmark Results
Measured on a 6-core CPU:
| Mode | Per-query Time |
|---|---|
| Pure-Python (NumPy - 𝑙2) | ~2.8 ms |
| Rust AnnIndex single query | ~0.7 ms |
| Rust AnnIndex batch (64 queries) | ~0.23 ms |
That’s a ~4× speedup vs. NumPy!
📖 API Reference
rust_annie.AnnIndex(dim: int, metric: Distance)
Create a new brute-force index.
Methods
add(data: np.ndarray[N×D], ids: np.ndarray[N]) -> Nonesearch(query: np.ndarray[D], k: int) -> (ids: np.ndarray[k], dists: np.ndarray[k])search_batch(data: np.ndarray[N×D], k: int) -> (ids: np.ndarray[N×k], dists: np.ndarray[N×k])remove(ids: Sequence[int]) -> Nonesave(path: str) -> Noneload(path: str) -> AnnIndex(static)
rust_annie.Distance
Enum: Distance.EUCLIDEAN, Distance.COSINE
rust_annie.ThreadSafeAnnIndex
Same API as AnnIndex, safe for concurrent use.
🔧 Development & CI
CI runs on GitHub Actions, building wheels on Linux, Windows, macOS, plus:
cargo testpytestbenchmark.py&batch_benchmark.py
# Locally run tests & benchmarks
cargo test
pytest
python benchmark.py
python batch_benchmark.py
🚧 Roadmap
- SIMD-accelerated dot products
- Rayon parallelism & GIL release
- Integrate HNSW/FAISS for sub-ms ANN at scale
- GPU‐backed search (CUDA/ROCm)
- Richer Python docs & type hints
🤝 Contributing
Contributions are welcome! Please:
- Fork the repo
- Create a feature branch
- Add tests & docs
- Submit a Pull Request
See CONTRIBUTING.md for details.
📜 License
This project is licensed under the MIT License. See LICENSE for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rust_annie-0.1.0.tar.gz.
File metadata
- Download URL: rust_annie-0.1.0.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a676187547c0e6cbcff49853afd2d619d374ae4d05c584f9e57dbd1ae7ca621
|
|
| MD5 |
b2cba87757709200f372507ec203f500
|
|
| BLAKE2b-256 |
8a347d5330a91d149125916e5d2c899cd3b19a7f38f54e5779564ea8f948f09e
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.8 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
734bb6b7ea3d9cdabb358676ca564c5e30c17fc741e37481e2be0f61a27203d3
|
|
| MD5 |
d66d198b72523cfe652452af95550836
|
|
| BLAKE2b-256 |
fd877e9e299cc31353c313e48de1024bbdf5b508c701e00f72a2d165d2f52ef1
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 608.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4c31d138227685d4348feba6c97048edfd023f4b20b56e9ff08158d15094d98
|
|
| MD5 |
31b23574b6ed05114243152fb431883b
|
|
| BLAKE2b-256 |
d6a40fe7b37b9c962f0e5d6dfc2bc8c666f4f327dfde451099145149a99ff31f
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 677.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1e26f5e4ad5bcc8baee418c58d6f85256438e7f0413ff9db79c3c5f1ec393d6
|
|
| MD5 |
2f01abeed2fb2113e2ac5e5fb5caab36
|
|
| BLAKE2b-256 |
bf9d7eae37083bd6a80e69670f8e56d894028e0edfffe8e95f9911182bfb78c6
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 585.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
696008a41ee1daabdb9c54e46c43dddad6eeb8db019c37dd6a4f4eefa1e20d8c
|
|
| MD5 |
e47176b97bea7a8f703ec9e81ddb2178
|
|
| BLAKE2b-256 |
681f7a8f5d11b60436923b5b0ee60671516719740a8976fd91f453f52ed7fee4
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97e6e73399bcefa1970bd67b546cd9253eda3b03fcb9834f2ba4b5fc99c849fc
|
|
| MD5 |
76e3f7f64d6591a8c0356b272254ad27
|
|
| BLAKE2b-256 |
58e97251cd88de46b7feea27876dddee0c52758d6015a4232b401a89e4a4e187
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 481.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a374927e1ffa92f7ef8fd9e34fc3a0065ee39d3b02035051b81a1059d749f1a5
|
|
| MD5 |
48eeb0a66ad862b1fce2c751f09da66f
|
|
| BLAKE2b-256 |
c23d1a80e4009eb4568eaeed4b2c498a6458a316f7d72c00df4df71b1f47ddf7
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e1603f648cec6d45c5eadd3a7d8f1777fe1828d3d62bc1b94c31e4f235720bf
|
|
| MD5 |
8f43e5aaed6520342b8ec4b663ae4160
|
|
| BLAKE2b-256 |
dc55974307cb5aced86ee3af56a45b70f3361a4a061d637cd265b2252caf7b6b
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 436.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5999c71a68c32ffd4721ed3e5246b2efa9f9c6c7955ae62a6563fbee782e818f
|
|
| MD5 |
876f06581b826bec877372af9d44fb62
|
|
| BLAKE2b-256 |
142b74d543fd9613668b5eb158cc057b2a74b0eb588e95aa8879db52036e0369
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c96cdbd23beff239625996bae02c73a9d4d2fa21c20d32700d8afde6706f04d
|
|
| MD5 |
537712b51c1830cba514a848edf2291e
|
|
| BLAKE2b-256 |
5bf6b26be52b5b6891eab81f6d9bd61ce6553128f791738c02949d2473cd1608
|
File details
Details for the file rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 406.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c731b2ae352d65416ecd1750a9c08eea5f7d403a781cb0ab7dfb37d18de9b889
|
|
| MD5 |
4fedbef23ea0c5d9d6c668291fed1ff0
|
|
| BLAKE2b-256 |
2f2ed7e40796c9a670245401f1ad582124e721b606ba4823ed103ddb62b64fcb
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.8 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48aaf43c667d0490e1955dfa92bd890cb3132ecc5e8372601f74bb4f93416d71
|
|
| MD5 |
5650e1a3790ad6bc781a1f80f0beb75b
|
|
| BLAKE2b-256 |
f4a7f83d895ffdcea61bdbef59399606854585d2fbd10601eca4e80e03bcb5b8
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 608.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0536bad4a0b3d80b52c115ffb323479faa37033fbb6bf9c0a5227ed0bc0333d
|
|
| MD5 |
d17cf45dabeda0752e7d860ae0b9060e
|
|
| BLAKE2b-256 |
b0f076dc1a9b119ec1be1bfcdf096217a61c15df962777bba36ef65d4c3d4f47
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 677.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96b6717e47f2cd7ecc3cf735a5ee1bbd7151885abe2ab558ed84188882a751db
|
|
| MD5 |
2c2aac0ed3a7f1d7e894cd25d65cbd1f
|
|
| BLAKE2b-256 |
3ba73072246015f269f67233bc9d110f246178dabf46fb496ce5eb35ebeaa528
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 585.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57b60a87cca21b2c7d37b9e56b774e3e595d9631589e49f9c92ff4d3a464a660
|
|
| MD5 |
d2544ff687a2faf9fe5e7a9164dfb196
|
|
| BLAKE2b-256 |
32df385b6a63d074cced534bf36cffe613f23a63ef7347bf2185fe82e3703127
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ecb5c4e15a5728aea94920e4fa268ccfd21b0cc0de674da11a4781f70a9eecf
|
|
| MD5 |
56dd638095afe3413acbe23278df3ebe
|
|
| BLAKE2b-256 |
b0f3a7b22d8e0d58a20b46f4789ac278d14627aa32d8db51db0e76607288cc48
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 481.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cbc124bf55af5d082b43e781971c7e2d44fa2573562b3e0cfb5712c483ee657
|
|
| MD5 |
c3bb32a0addfec849a751e7b3145845a
|
|
| BLAKE2b-256 |
1a23b355afdb93a71843b7dbcbf5145b9e1b10516440efeebb3b663ff3e33465
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd3a89a5b3a0b9d1fcd9a28fa2e052dbe01daf72b7227fd5ec7d0781a67aaec5
|
|
| MD5 |
9ef1deb6a07121b2e57687955495ecf0
|
|
| BLAKE2b-256 |
802d9ca48cb0e38fc5f634786659613155401c2c763ae7a2223c282f35f712e4
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 436.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ae92d31153ff3a9fccaaa967acea195007352235bcb7786db830f08c9e4784a
|
|
| MD5 |
d0e68f4a30467f1409ec294a0fa5792c
|
|
| BLAKE2b-256 |
6b53702cce69596a39cc2d0a709dd2d97a6a84be33b2d4727c205399664a1e17
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a33ac2b870552c578893486b8a11ec49811d9cb4f989bb98930a9c5e211a76a
|
|
| MD5 |
4c09b932967aa9ba5b855f3a5d95f06c
|
|
| BLAKE2b-256 |
d1cded3018f01f468601d0f00c402ba384217d01d990128158b9d22df2ffd48f
|
File details
Details for the file rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 406.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a6ebfac092a0ea9e5c82bbd4d512cefab3b09790fa590994aa8b6f4c7fcc7ae
|
|
| MD5 |
1337202607d11b3eab21c3dc63e3ce6a
|
|
| BLAKE2b-256 |
bec4b79e05923969eeae9d3e8611800a13b56b21b659b99d048ab85b9c532c86
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa13b50b9692fb3b2aa0ffb9d762e70df539d7655e22b1f3e22642a2a4690ba8
|
|
| MD5 |
fcc8f9107ed4c34df2382bc5f9926bbd
|
|
| BLAKE2b-256 |
cc612800f770bed4d3de0c219edc695cd8c6b4eb9868afd324aa7253f5911b84
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 608.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f00da0a78fc94ee49f7721eeb468dd646400cdd1c9ed7fb554e95b0b0631eac
|
|
| MD5 |
0fc56ac8b05db30b6228ca6ec7e92baa
|
|
| BLAKE2b-256 |
90d46951f2cd5d709466d22bfe5363e8d2f5a8df1167294b7714c5440cce165d
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
343e9b5e5edbe95e05a08a2420a5bc2c89d96ee0fc55e3cc6f3cea612f606189
|
|
| MD5 |
1a64a8a6d52a7d722da940fcb562f751
|
|
| BLAKE2b-256 |
7f8ea550b83bba1689236eb54c274a7ac2ada17a75276509b552c4c2af228cb5
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 585.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
816a00da1d07f1b461869bb05924e98eeec6b9dacabcb1efe5cd088189a2de40
|
|
| MD5 |
55da78135182538979b529fa2b3f98a3
|
|
| BLAKE2b-256 |
0e554e6e7511d6643b901a8c78de236465b4411721820c2ab049518dd1d9f706
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 481.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84a7769d912c3dfd1ca42d834a809971aa3c18ee2a51670bf0237a41e21165d3
|
|
| MD5 |
d4739be411539e0a539828b40b6b245c
|
|
| BLAKE2b-256 |
a455cab15c8df3abe789b470f2512f0b16e94cd6d2d7dca610b11ff4def22b86
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0002bf7af4d6ac709b258107eccb78d9a98c2c5deba556f7feb7a1c0f39f205c
|
|
| MD5 |
07c4b8372d0726e930e8ef394562019d
|
|
| BLAKE2b-256 |
5e229c3141452d15955977494a3982b511453e0ffd13e6820b74ce612c1edfbf
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df425cea78bd39bce2a115e731f96d7fce0ced76488d106b255d3ac93eb0e6b2
|
|
| MD5 |
296ee98e33c136738c38f819bfa79e8f
|
|
| BLAKE2b-256 |
319d87e528eae08f01925d7b16cd292d5718023b74a6053f3ee1466630bc8724
|
File details
Details for the file rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 406.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4a6cf76eac0cb25549b3b37bef71f538fe525e45a9c7d91099b2e528d0910cd
|
|
| MD5 |
2b259bfb690b0699b4c9675842d467cc
|
|
| BLAKE2b-256 |
c4226e0d99fc151a0daa9b43cff4146b762c05e73f452fb2db8cc6d51731f189
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.4 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eff6276b242c89fae0740311b84981e4fad3d97a5f4b2f476131e051a3b9f157
|
|
| MD5 |
3f8542285a61753932776973057b0686
|
|
| BLAKE2b-256 |
2588b31e7f983e44e1acee2b8ec62b52d4209dc01899ae77b755eb9f4a998489
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 607.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65c7e324ce0c21eec0f7950334b98e9f690b1a1d1a30acc627a1c4b396c1dc92
|
|
| MD5 |
2c40b269e15858b4dac1bca465ccaab9
|
|
| BLAKE2b-256 |
7d98a0be1bdfe635df9f11d47857b06d22f1e0552391a9e059b7808633f123e1
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2939d04c8d93dea9eec390fa699ce77347ae9c83cedd75b9b5924b5e3960da9
|
|
| MD5 |
c80e0cada15f6874acad00c675f1a89d
|
|
| BLAKE2b-256 |
47f4e351c7833bed64ac7ea18c30899867a69eb422d9ff1d1b68984da07ce14a
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 585.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3252dcf9325a508afc21f392766ce03a4c34631544839cfe133ce86f790ee685
|
|
| MD5 |
efdde9efe8d830449f6d6667bf2269d1
|
|
| BLAKE2b-256 |
2722245ae436ad128332e94ed186a3670bc8ae0867b081433fd569951c04c292
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 480.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8046d90627d912989a4df784c5a8d7e27b01f0d0eeb426dff913062aa67e59a
|
|
| MD5 |
4d1072100423e940da01da848b69785c
|
|
| BLAKE2b-256 |
897d60b4104bc2eb4f31d3e1ad9d37f90b53340ddffd5de1011d4fa7aeac53ea
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 465.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eeae5a499e135f2691ec1710a5c189c4bced3e888658f54e5daffb5a81a082c
|
|
| MD5 |
bd21ae8267265662875bba96bbc5c16e
|
|
| BLAKE2b-256 |
1ba6f5d8e6c5e0b23d87a7f546ed68ede0bb406748d7909f274b9251387d781b
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c7472890d7178bc152910ea03bddf9b0d1c40e3e7c922c6180e865a5e292a31
|
|
| MD5 |
5052091ae1659f2a562697c6878ba505
|
|
| BLAKE2b-256 |
762e3413d132e9e8282c50934dd09a3eb44fa41f889a24fcce85ca3787a45aa9
|
File details
Details for the file rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 406.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2eb21cca83a09468f0789c2877bd3bb3207efeaf26c34432be9369829503eb1a
|
|
| MD5 |
d294d7245846c597a8051da76c70db47
|
|
| BLAKE2b-256 |
ac92936ff1e862c7dc24dc550632843420bc331c813e2ac533a6c7dda41e4c57
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 236.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a7b00c8a488c221bfcd2c82bad762d12ee565110132b5a15e439895a29ce8a0
|
|
| MD5 |
8d3d30e11cc643caaf339a8a522fc067
|
|
| BLAKE2b-256 |
7de330c5735a135dcdf596909cc38cc013c970fbd1c620300cb6c1101f524849
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 221.4 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb5c6cc1b424930389ebf8343773b415d62bf3426743d4caa9620a085abebe50
|
|
| MD5 |
91ee2d89ac8b683226fcd188fd81fec9
|
|
| BLAKE2b-256 |
e37881050a5bb70e8cdd63f94918eeb74b005201c5cc17e002c4e97ff7048054
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f116e014e2fdec04a575ae10ab43a1e1c86b740afb195d72e277e9983882bab7
|
|
| MD5 |
824d886b99ef9f12106ae8345507888c
|
|
| BLAKE2b-256 |
811328cdee425e0c93a0bb9da0b553a779dd66546975b1fbef87e7495e27dc50
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 607.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58557c7dd8b67c57940b70f4cab74edd3350d96c0dcbb682bbfbe838ba3725df
|
|
| MD5 |
e55749a0ccd358c28613f2e221296634
|
|
| BLAKE2b-256 |
eb2b4f92ec1eec9ebbfd9f1973cfe23cb324e1715a8a135aeb75a7897637192d
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
904f99a83afd8f0b7174a2251a03a67d0bdfe2a611fd72a0b3e29da1182231f4
|
|
| MD5 |
2d377dd5e6ac3f1882d79079a793439f
|
|
| BLAKE2b-256 |
fa5fba9529790fd67cdd028b25905d3858b1fca49e595add2f83d46671e77c71
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 584.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2725dec1e5ae49a2b26658c30ae34ac14c66b831719e2c5dba83bd7227a7eb1e
|
|
| MD5 |
293b6b6de843fd3b171b362d916056e0
|
|
| BLAKE2b-256 |
18033fc7d35ac06e781fe23f42b4745b56b12c017940c44934feb7d8100e0ba3
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fd85e2228c666430b6872358ff56b5a4fcefea054a09435b465384898cd33e9
|
|
| MD5 |
1a2d73414981f21feae0e5a4373733a8
|
|
| BLAKE2b-256 |
903761230266899c29d85d0ff96aba1dcb78a5875191c947d5f3c2d0aeca63e6
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 480.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2d53b44d9ba348187dc89e7f08de7ac03fd4b887a32dc15b821cc1fdd7b1954
|
|
| MD5 |
e6a4fe99fba5d33f38049cea51f22daa
|
|
| BLAKE2b-256 |
d93e1b2241456ae6aae32cc466c04ca3c9c55ac6b6703ce4fe1229e7eb5f36a2
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cc8be4f92dbf2e35b2b92733660f7ae5681589596475c9212169cd3532888d0
|
|
| MD5 |
953638a98ea2c97e5f68c83617dc5090
|
|
| BLAKE2b-256 |
a2685d43e1d5433d5fa9534aa2e7a12e38e415057cc8ab660222ff9d3675faa9
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 434.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f72d780dfffaf8c8a579a3cf969fddaf20cf5457d3aef3ac6528c461fadf6c3
|
|
| MD5 |
6a856c09392c6b89dc40888ecf18131a
|
|
| BLAKE2b-256 |
c0a9d7de6928121dc369889a96e87c32b616c64c547b04ffce21ce19e5d55d75
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5725204acfded6e1759fdbf15d190108d163d1f26d4c3bc40fdc929a7ef3b1af
|
|
| MD5 |
2a02178de17b16dcf7f7f62e40f3e0cc
|
|
| BLAKE2b-256 |
a2405a0d7fe585de40686cac5abc6142c27c52e78cdfaa671eb0278952b5a45e
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 405.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49174da22c6ca60876ca2ec312098aebf652db9989dc04107f989dba0b446ce4
|
|
| MD5 |
182d5960129bfdad39e995720515cf8a
|
|
| BLAKE2b-256 |
c2c71c8daa76f3063b55c4469c1cc3cee2c89edd8b87a38a78bf0c545ebf90e2
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 356.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84c90a9a85075c485548f7494c5d46461057c2807dd130a10218c562d9af3c8f
|
|
| MD5 |
fbd71f39a27b6176b8c515157e311ce0
|
|
| BLAKE2b-256 |
443e765a7412986a2de625aa38e17211d3dddbb654ad1d20aad72a3ece5197b1
|
File details
Details for the file rust_annie-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 363.2 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5923cd76f7bea4b3905307acdc9477e89085436849dbab01e5a522c10235d65
|
|
| MD5 |
1519a300a444bee70f7ed7f2d23f3430
|
|
| BLAKE2b-256 |
79cd267fe39a358ea92b0824c917f7c07a75a9693e91693919e25450e5b13e3d
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 236.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea418a35be1cd5b51cbbd76b552a2b14ae3550e7a7863181a936bf7d0a7a4bb0
|
|
| MD5 |
940d7e5d6cd16ec111efd88665fdeb9c
|
|
| BLAKE2b-256 |
850e932cb33edb638b3e09d5e4f9967e0aa90e2289c923c39b2c11d355b0ef62
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 221.4 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1d2aaecb4c370120136194601f2e784679f487dee35ab4f09b0920a6431ba72
|
|
| MD5 |
b54bdc07e24048c0361b3c37b2adb1e1
|
|
| BLAKE2b-256 |
3fc28e17a0532d17408462bbbabc0c818a5b69e6ade044cbd0c45cc0cdc432fa
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c803c915ba3e1910856a48e3fd51397097524608b11ff7f47d315389406f0689
|
|
| MD5 |
71aa89e381481693131e130b05756e6d
|
|
| BLAKE2b-256 |
c13e22a6a85496bea896b8c444825f81d96c08d81ef775e63c08ce19a1dca92a
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 607.2 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2087776d4be9a2a19673985f0c19d648534c6d2ef537d70505a32d45702ae977
|
|
| MD5 |
6518c04eb490215a4deb3e62ad12fb3a
|
|
| BLAKE2b-256 |
5916af0c7e05afea9c9a5a4dc30ede865deb2c86b27aa9e7d43de2686116c7ba
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be8b4e8c6b56c70613d527c7355b78ded2642f46cd9116109e9aceaad08caa42
|
|
| MD5 |
93e75ac3def531d0d95c3d186b74d2f4
|
|
| BLAKE2b-256 |
31abe7937acf6863aaa0148e2c9c0c243483bb15be9055d4b2b3cc9af13b3335
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 584.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23a35a5cf2331a7dcf8ef5c357578cedca2d78a0c84fee20b0cc46796136599e
|
|
| MD5 |
d1a1625053eb614d4713f3fc91819bf1
|
|
| BLAKE2b-256 |
b7769894c617742f95c934be839a5c4f5690375a3deee9de1666a9ef035531df
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00d5ea5acd63504a9de44c929146975f6781eec6ea3e875ab41a73f13ce17cff
|
|
| MD5 |
fb2d747d05bdb0e7d6be5276241dbb41
|
|
| BLAKE2b-256 |
cef672959b21d87d1c3e7548fa66e2ff6944a7a3d22a4fce3b10fbf228dd91e3
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 480.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0ca7515a255613bfa2f720e15eeb991b722b61200df6b5d406a5a331e00b883
|
|
| MD5 |
e0b1057dbc347ab15f71e99bd4f5af39
|
|
| BLAKE2b-256 |
1d4f78ea8933ca234f6473ce04f9b394a2fed98b07b212531a9579de29f4d657
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2563c19f1e8b85915b6a6c89bdca63bc694cb7c8fe063f46db74f46fd3aeece
|
|
| MD5 |
ed0adf6051df535d6f8356b8960f169f
|
|
| BLAKE2b-256 |
bb033af241a58c5b7ea7ec2688ecb9bd193bbf17712333306cd3d0a7b3ad0aec
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 434.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d14fa3ed53ed3d229fc400c0058d37335cfa86c3d7dc054f1a2d5cdb6eb9cb40
|
|
| MD5 |
be09a95612e217a73a2e0c722306fc45
|
|
| BLAKE2b-256 |
c91d5ae6de8e7f14a14747df594859409cff13cad8576468a67d69a8d94a2b85
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6f228c45734920aea75743fab525f98d7fe5beef3a0b710a94a7a5474452709
|
|
| MD5 |
57712507659d8dc0ea2ff18f7342a29a
|
|
| BLAKE2b-256 |
745ac9b528cd7a1ca6910200f2308ba548a070c74d06b77a371c08399431faed
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 405.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f32618c4243e900b6c8cd3d81bc40739bc6abb0090acf9cb362a0ef5f8b9812
|
|
| MD5 |
6bab1e1167bfb2f5482e31ff1051e30b
|
|
| BLAKE2b-256 |
c6ce140a35ef2e5db345d2beef19eecb9891a3be76bba685cb2b2859c620d1e7
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 356.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52776bc3698497e56eafa05dfc731f1fe5cfe9cec7780475d2c6a750294079f9
|
|
| MD5 |
dabfa6de5829b4e8fb4bc1b18932aa12
|
|
| BLAKE2b-256 |
375ebd9e2d62277459823d3bff68ed9480e76181fb03383ea060c35aff78946c
|
File details
Details for the file rust_annie-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 363.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dddde73ab7f720c8ef5f021e2ecd70cf427ed8fe00737af9384ca7f08208c48
|
|
| MD5 |
c67614f1ee15b8cfb901e5671ccfc739
|
|
| BLAKE2b-256 |
36d946d228d69554cf71fff67194529e035794813224028c976a701fc7cb6305
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 236.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f52542bf336907205033ed28e960cad2ebba746468e95aa2e59fa7858abda43
|
|
| MD5 |
97b43a0c569d2dc25d5982db2846418b
|
|
| BLAKE2b-256 |
3dd5f63dd82a1cc5a5b304f2621a626da623f29e2c9175aa721ef6a4e9fb9aa0
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 221.4 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3309855c8248533762f1a8e9eba01a5a0969e7ff0d76b9966a9199063f81fb1
|
|
| MD5 |
f784c7eebb4a92e9d2464f4a93b85cb4
|
|
| BLAKE2b-256 |
002bfabb33374e3120532896d6daafde20c0b909423a66e87184101f09ab0591
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5661f936e48fdd1d65d32e69930194efa9ab5f07296c27a5959425fedae1ef5a
|
|
| MD5 |
02d7f44a882045ef53c715042175bd58
|
|
| BLAKE2b-256 |
e4690a3bd0e909862e503200f40ea16c76a733e36c5f1e3665f21c0f2dd12833
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 607.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55ea90deb96963e9a247878a0acbee2ebc01cedadede438b630339fe85591c15
|
|
| MD5 |
1b6a6d4550ed4c29575e282923229f87
|
|
| BLAKE2b-256 |
2b66547f2760c9eb330140d908c6186fc209e6634d937cfff90dcf8bbbf40cf6
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
771d3c0b3a23cd08554fc62540a08b98f35116750bfc10c4f0b3bedf327d7bb4
|
|
| MD5 |
14ade6e335bce7298a09e20f26c5a806
|
|
| BLAKE2b-256 |
ce649c0f3966455c7fe36fa2c9be249b38b4124a84f88a6a63848574771c0590
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 584.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f957dece87fc754e82e06ea24a683679b105eb1da72b3868baccc6241ad33f74
|
|
| MD5 |
e1104f460903c676beb8cec755d5a756
|
|
| BLAKE2b-256 |
a09415cac53cba2bddf61f1727879fb88de75c26302bbe3da32ba8d41beedf93
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e6b10d16a460bf551e37363fea7f553e0b4b724ae7de24fa0c4ad367c4f7870
|
|
| MD5 |
54db0eefcb31d088bd533d7974f733fd
|
|
| BLAKE2b-256 |
5f944be478613c4480763c5ac63ff60acf3c383903a284a6c5acaee9784dfb34
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 480.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cede9eeadb6f040dccf78c83a9964388d620dee91042468e698114fc973e0a63
|
|
| MD5 |
c9fe60a9c64dda8de08d29cb8024b75b
|
|
| BLAKE2b-256 |
187abfe7f21d68b499e6620297392eed5847619a7b11f42ad5636b273900fe37
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
734500398a37491e412ff4fb04b393d62cb3e729ee36ba540bbef9dfadb30712
|
|
| MD5 |
08a04e55bd93e9efd571d7a906e7638e
|
|
| BLAKE2b-256 |
b626e728fc968fcbd9330f20e7a339e8a64cb927b1063b44a33c428c215713ae
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 434.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d4d933a126b65c7b4547ddd5e81fca9103b4900ad9c967250233180fdb7a247
|
|
| MD5 |
ccb34bcd6b27d112039e647d605dec72
|
|
| BLAKE2b-256 |
09e9203764c24518c1bb01fc27bdb4b743ee5895a6f79358e7e379be81a6006d
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e53f53baf318c3dc40a99aef75b876c205810a18e2f9c3ea43c8422f894e1996
|
|
| MD5 |
0dad6dcfaaecc30e76b2df8bd3cd1ad3
|
|
| BLAKE2b-256 |
53e95f3e34b26311e0fcce65a117ab86335d174113ad13c0a29f2aab5ac30202
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 405.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe997753fe2895215c891727a00c7fb8db77c31632abcb06521792a1bf290f4f
|
|
| MD5 |
961b0b3f38f6e33dc8ff46d68bb560cb
|
|
| BLAKE2b-256 |
9f8f146ab116c3f4847bc9af9abc5905fb0d30f2c347294afaa62c926029d629
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 356.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90c7cda5e5e226bc1b48c2d3a76c281d0e368ebeb55f52bd51a74880ee0ae0ec
|
|
| MD5 |
3f2324ab753354af1cce7d28d9307f6c
|
|
| BLAKE2b-256 |
88882cb06c2726021e445c3d54acd5d4e76cb46359e4dd909c7f0bd236f42b61
|
File details
Details for the file rust_annie-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 363.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fa896b2e13395a0b9e47ae5224dcb49820e1cee53658019daf573dedd8786e7
|
|
| MD5 |
4b158e1e2e20d050b2841f94de706fd7
|
|
| BLAKE2b-256 |
e1bd4b0d10cfb989f2104a1209cb4bc35a7a08dcdae8969bb6b6a9efd6c13099
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 236.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68a3ca6f9d1baa0b6c10c5e05ace0601b54ddf6a5fe72169966feda914383abe
|
|
| MD5 |
2a19de4b3a55f844381839ce86fa82cd
|
|
| BLAKE2b-256 |
c62484022f68a5d0d16f6590d7353a192ff8d23f91f2023be240ca0dffa2ac50
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 221.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a04671e0e03ecda32e0762945a629c5a4c0ff7cad7172629f2786002373fb83
|
|
| MD5 |
cc9e170a85dc3c90167cfe1a3307f2b6
|
|
| BLAKE2b-256 |
3f2783da0de7414ff88085ff6e83eb57fb92a448e3fd65d251cb48e676c8b86d
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aafcd0dc55c4164599357f4f1dced40f70b518ea2a006aee969539bc0ca1383c
|
|
| MD5 |
10ca314b5efd9e3d66a4b4d16dfefdea
|
|
| BLAKE2b-256 |
26a7a0cf6ac538769078b9cf9b5a966f02e5c251e6a629c63b0e245d1b4539a8
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 607.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56f234a41412c3c98c6d844e113aa5ff235aae46f3037eac4660d594a11d7595
|
|
| MD5 |
342462cc01f196aea066bf704d221af5
|
|
| BLAKE2b-256 |
51733502cc8335f6007bf092073ef9174a694d500ff2375ba2766f6e9f8e1616
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f34c8ea2f8432f6c0b5da3d272a106dffbfc5d4a06e0934624156ad69df9600
|
|
| MD5 |
02a8ecde8c535b542e0398751977e724
|
|
| BLAKE2b-256 |
6d0c0aa13c306a0c8ed137994d7bf4045dc2b55b560c668f651bf7ba204f3621
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 584.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bbaf98c44ff166586a85febf36da474a39490908f510c4afbd1fcd328384b09
|
|
| MD5 |
b651c66680a493a30bfd04866edac7bb
|
|
| BLAKE2b-256 |
802d02043ce8806c977392b4bb88263d159c58d198c1dfb2505ece78ecb6af6f
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9c93c56c8d43741bae0b4267557eedf9b12f31cb6f994593429a4ac3a1145a4
|
|
| MD5 |
c88e7f2fb7996b163d3244836c9be540
|
|
| BLAKE2b-256 |
38fcd7d0e07ed1edaeacc6d00135f1d99067d55419128a2d57fc4d244db127cc
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 480.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
173bf49561a349bb9fe560b00af8d4c5a6139bd15c16614f733e9591c7a474ed
|
|
| MD5 |
96ff3374feb99aabc0bf56fda0dad8f6
|
|
| BLAKE2b-256 |
f920aa4c6cd8d19193dc2ef150fd361bd2266cd2a8b6f2ffd7545e7059cb56bb
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bc1c72367f34f3d2bd711ddcf4382ecfde3514f8eb7ebcb73b35e1afa7a96e4
|
|
| MD5 |
1be0dabcf48d0691bbfd26709cbecd4b
|
|
| BLAKE2b-256 |
6f24419a09d37f276581df06a5bb89c382a6c609c93b5c65640d6e664c1cf3e9
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 434.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3cf9f1e6d2befd8da291f998cc5daf2be0ed5064eb4d1346c0b3d30d96a543b
|
|
| MD5 |
622745b4f06341e2b2ab33bfe616c5fc
|
|
| BLAKE2b-256 |
eb2b4150377062c2202405cdb674ccce9005bc978c3cfed620396cff187a5e9e
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fa0b609598efee87e75cb105a17469b561d139718ba376faf4cc14d85352aed
|
|
| MD5 |
d655d4bb9fda425a711516ab9d221a62
|
|
| BLAKE2b-256 |
5af4fd8bca77d416175b4322bb707c5b972b78da383fc026700ff98d4c21f86c
|
File details
Details for the file rust_annie-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 405.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca1d2debfc5c7e328837246698f5176654985ffa2d6796bc1d3fb70d85bc25ee
|
|
| MD5 |
860c3d5d680790aa16cded510fa02eb7
|
|
| BLAKE2b-256 |
f2d0c696719cbc68e08fbd21558051966608b8167db01e370cad6da495ad2849
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 236.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf02abc76cef47d4549372c03ee4419ebe6ac98a4e228d03a646fad9648806bf
|
|
| MD5 |
d95e57e939f909fa2e47090e22fac7ed
|
|
| BLAKE2b-256 |
0730c5e04d0560c8ca713f99611a6dbf51fb9792b99e3620de12a3267727c3f7
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-win32.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 221.4 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0a7d5709e0a257605bd6a942dd97e0b27d925388dfbaecb489e2792babac4e2
|
|
| MD5 |
a975f92dc51fdebb54d074ec82771e6c
|
|
| BLAKE2b-256 |
3fda4956643ea6a98723540139a6b9b3cb9cdb6ea3361a65da872affcb4d3294
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3530d675b4f34b70c71ec4a0abcff942bdc65c0519a85fd8c4788d8ff069ae55
|
|
| MD5 |
349b3f86a254f3634ba6695db605f303
|
|
| BLAKE2b-256 |
b75a62d970522e83e5eaa3ddece87db7e19eba6079745750a9165e7b8b12a983
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 607.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0181f22d3273d9e702cf44ec7236b2002ce2ab48ffbb46f0a4ba932e56dbaf40
|
|
| MD5 |
dbf6592dc5aef1f97d73d4dc451163f6
|
|
| BLAKE2b-256 |
3810942d7620194e4e849ea2c24820cc07a4864438baf5732544ed9ddbfadaa5
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac0f66e9356bc02761a9b44910cc54f534b2a320e2bb9b4a02ce9f7426effefb
|
|
| MD5 |
bad8d543b8abf8ee0a676d047452e2da
|
|
| BLAKE2b-256 |
bf1d20101e605a54ef696d8f1a0dea1815c2655cb6ad5846cc183e7249c36b6c
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 584.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85b93eeaa367be46a3a99497e77387dd4276a2ae6bd22789e7aed2813e12018c
|
|
| MD5 |
5b609ed63fe0d482453506536c328f48
|
|
| BLAKE2b-256 |
8cf673872ed8304a63a529d7002f9ab72dac511ab87aa663abf95c45487626a8
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0e2826bc1a762d57551461b642e7dab6d9fcf27f8a7c7f432912bee0cfd9eb0
|
|
| MD5 |
a466572ead7ff4ef8eb653622aa0d14a
|
|
| BLAKE2b-256 |
1f41895f6d0a821478c460dc85406c2fefb52e2a0676e501e10ae5b61dd017aa
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 481.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
458950f0955ff35a263a721be53cfda3d1c55ea892f8c30913de4be7963e0487
|
|
| MD5 |
8c0e63b7f5e0748ac81446f95c6cfff7
|
|
| BLAKE2b-256 |
8741a2166115322b2600fa8679b9110f537d342ae583947ac9ee08a67e78a5f9
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 464.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
261ca480119f3d00b851239349ef5c78b665534d5e6118039ced01f8d45cbda0
|
|
| MD5 |
96dbbe573ec40a50fdf1c969f4635059
|
|
| BLAKE2b-256 |
ea35dc9f9cedccf93610ddf1275c4c3ca53cdcd63e1d68c53e9275a6708ebefb
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 435.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
229d9bff02c95bb75312e4b196481b7355bf0222b4b58527fed0a9217328bfda
|
|
| MD5 |
cad9b17386c1f98c53e2d16606845d55
|
|
| BLAKE2b-256 |
e7d36128f94671a70d6cf39278019a9b2e1b6f8071ee36d0b54a498c04bbd7c9
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8fa989a355578c1beb7ea04986c2ab116488583370786a5f502529cee77890a
|
|
| MD5 |
6bf04cc38d4df3aab658cb8f907d1874
|
|
| BLAKE2b-256 |
34ff4c32b17a577a3e6ee8bf1a16bd48bce9fc37c5dc8186eb1423d7c65ca0f2
|
File details
Details for the file rust_annie-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 406.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc278ea27c95808159452550882dd26b25d202a277a4e23f77e89d6862797b52
|
|
| MD5 |
4f8fceaae607f625ef4e993947b3e0a4
|
|
| BLAKE2b-256 |
41ff4dae01542cc5bc7555ea039cf90b2571b7a7f049cacdb92c60d4df5eeedd
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 236.8 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4a59aea0d20245d5b5b3b073e01967544aff657ca2a35a065343172ea59fce1
|
|
| MD5 |
f52c212bef86400568c463a2b9696509
|
|
| BLAKE2b-256 |
5f975551468c5b1ae0a24ab436e741c7498a62ccec20cd2be2f44890bd6aa5bd
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-win32.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 221.4 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b32e5501ea563bc62e6d8d50f0d3ccfecbf891d889141ecb51ae369a44f80f10
|
|
| MD5 |
b9f14675ef652459b3a23ef39bc769a8
|
|
| BLAKE2b-256 |
a467a8419b6a2f3b47da393647465f14dbaaa13d736609d07afbde1b743f5943
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 579.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
729371f57cc4e92a79369206c0e08edfcc6c5b69380649cbcaa1901a7099f3e2
|
|
| MD5 |
eb17bc920bb9ce3d23e3672e4456c956
|
|
| BLAKE2b-256 |
dc83bc4a7cfba01521b3e51d4ab7d8abefd6c2e1300065e7ad12f96c69b56f78
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 607.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa0aa5f0288e9c296b04e3011b786694db829ae5c0770e0898f555e206482653
|
|
| MD5 |
7c379893751c2d5d7abbe3fc72c92946
|
|
| BLAKE2b-256 |
1b744e06f116df73cb819d3ccb8b73607f7e47fa2682cfd3bab3966453003011
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 676.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f9099456acba813999cabe6ad67aeacb7c3f54539497e6575ef41c128e9141f
|
|
| MD5 |
891869c1e116c64fe0b68ff39abb1f22
|
|
| BLAKE2b-256 |
9de24fa2be55342520d038ec57019fbe2ac25ce521061d3b17e894c89f8cd382
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 585.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d10acb4cbd443127915f138ea46765fe641d54b8c2aa28b469000b50415116
|
|
| MD5 |
1ac1ad69f99d3e9201fa414a9cdced5b
|
|
| BLAKE2b-256 |
577f26493b5a812525cb8746ad111f7acb44ef56fa133de7f85e0d26bd7f0ac3
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 408.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f5a262d77a054477cb2027317f690a5a3c86ca84b343a80f252d782fb4a4fc7
|
|
| MD5 |
f2d85c2e392fbc2ab16952680c7ea978
|
|
| BLAKE2b-256 |
03be157d9d41c6d584accf890b9d20c6b93f50ba1f3e1ad69e93050891bf3f4e
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 481.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d90e6f71ec4f6bcaecd914a5344e9bf6aec2773757a7b32d398505a8419cfcd
|
|
| MD5 |
ee9c7f791ea1c36f03f58ab6561a5adf
|
|
| BLAKE2b-256 |
f2e715cab4d285eb5802e7b1ee4622a0792817501b7afc3beedf3bd26d6063ef
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 463.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8ae0fb02d7359eb8e6889365a8ca535ab56072fee461a1828bc0468614f8180
|
|
| MD5 |
eb30b7cc62c06a3dd5d8488c06212e60
|
|
| BLAKE2b-256 |
57e3916be720a7b974217f78d8e5412f123f6ab677b6056b9912c2aae62934f3
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 435.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5da58fc53b94794037023664040e0bd92e7b6df2990b988430251e55d4e2bda
|
|
| MD5 |
63114deaecb91691e91a19436a1bac77
|
|
| BLAKE2b-256 |
62ff3077823fce61fd38057cbc95bb78158337cf226775b59f72c613e7377325
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 414.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4157ff3c7cdd196af36dd9b9080f90d546d7af756f96307c7db5919c7d72032
|
|
| MD5 |
d84b4110ab4bc0a1a6f3202567f40642
|
|
| BLAKE2b-256 |
2259b684fe81182c58abe72fcce3d9c2f79de61260da27ba7b3aa32e1b10be2e
|
File details
Details for the file rust_annie-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 407.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f682a579d09161e264dd83185455171f875d47ef7c147b517b68fea8f9e97279
|
|
| MD5 |
c6244608ef737389b567fb760d053814
|
|
| BLAKE2b-256 |
076c0d3a98018907a1e3f36717fbccba24d49937b30d3b0d8dc0e3329195497e
|