No project description provided
Project description
Rust-annie
A lightning-fast, Rust-powered Approximate Nearest Neighbor library for Python with multiple backends, thread-safety, and GPU acceleration.
Table of Contents
- Features
- Installation
- Quick Start
- Examples
- Benchmark Results
- API Reference
- Development & CI
- GPU Acceleration
- Contributing
- License
Features
- Multiple Backends:
- Brute-force (exact) with SIMD acceleration
- HNSW (approximate) for large-scale datasets
- Multiple Distance Metrics: Euclidean, Cosine, Manhattan, Chebyshev
- Batch Queries for efficient processing
- Thread-safe indexes with concurrent access
- Zero-copy NumPy integration
- On-disk Persistence with serialization
- Filtered Search with custom Python callbacks
- GPU Acceleration for brute-force calculations
- Multi-platform support (Linux, Windows, macOS)
- Automated CI with performance tracking
Installation
# Stable release from PyPI:
pip install rust-annie
# Install with GPU support (requires CUDA):
pip install rust-annie[gpu]
# Or install from source:
git clone https://github.com/Programmers-Paradise/Annie.git
cd Annie
pip install maturin
maturin develop --release
Quick Start
Brute-Force Index
import numpy as np
from rust_annie import AnnIndex, Distance
# Create index
index = AnnIndex(128, Distance.EUCLIDEAN)
# Add data
data = np.random.rand(1000, 128).astype(np.float32)
ids = np.arange(1000, dtype=np.int64)
index.add(data, ids)
# Search
query = np.random.rand(128).astype(np.float32)
neighbor_ids, distances = index.search(query, k=5)
HNSW Index
from rust_annie import PyHnswIndex
index = PyHnswIndex(dims=128)
data = np.random.rand(10000, 128).astype(np.float32)
ids = np.arange(10000, dtype=np.int64)
index.add(data, ids)
# Search
query = np.random.rand(128).astype(np.float32)
neighbor_ids, _ = index.search(query, k=10)
Examples
Brute-Force Index
from rust_annie import AnnIndex, Distance
import numpy as np
# Create index
idx = AnnIndex(4, Distance.COSINE)
# Add data
data = np.random.rand(50, 4).astype(np.float32)
ids = np.arange(50, dtype=np.int64)
idx.add(data, ids)
# Search
labels, dists = idx.search(data[10], k=3)
print(labels, dists)
Batch Query
from rust_annie import AnnIndex, Distance
import numpy as np
# Create index
idx = AnnIndex(16, Distance.EUCLIDEAN)
# Add data
data = np.random.rand(1000, 16).astype(np.float32)
ids = np.arange(1000, dtype=np.int64)
idx.add(data, ids)
# Batch search
queries = data[:32]
labels_batch, dists_batch = idx.search_batch(queries, k=10)
print(labels_batch.shape) # (32, 10)
Thread-Safe Index
from rust_annie import ThreadSafeAnnIndex, Distance
import numpy as np
from concurrent.futures import ThreadPoolExecutor
# Create thread-safe index
idx = ThreadSafeAnnIndex(32, Distance.EUCLIDEAN)
# Add data
data = np.random.rand(500, 32).astype(np.float32)
ids = np.arange(500, dtype=np.int64)
idx.add(data, ids)
# Concurrent searches
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())
Filtered Search
from rust_annie import AnnIndex, Distance
import numpy as np
# Create index
index = AnnIndex(3, Distance.EUCLIDEAN)
data = np.array([
[1.0, 2.0, 3.0],
[4.0, 5.0, 6.0],
[7.0, 8.0, 9.0]
], dtype=np.float32)
ids = np.array([10, 20, 30], dtype=np.int64)
index.add(data, ids)
# Filter function
def even_ids(id: int) -> bool:
return id % 2 == 0
# Filtered search
query = np.array([1.0, 2.0, 3.0], dtype=np.float32)
filtered_ids, filtered_dists = index.search_filter_py(
query,
k=3,
filter_fn=even_ids
)
print(filtered_ids) # [10, 30] (20 is filtered out)
Build and Query a Brute-Force AnnIndex in Python (Complete Example)
This section demonstrates a complete, beginner-friendly example of how to build and query a brute-force AnnIndex using Python.
A brute-force AnnIndex exhaustively compares the query vector with every vector in the dataset. Though it checks all vectors, it's extremely fast thanks to its underlying Rust + SIMD implementation.
Steps
- Initialize a
brute-force AnnIndexwith 128 dimensions and cosine distance. - Generate and add a batch of random vectors with unique IDs.
- Perform a top-5 nearest-neighbor search on a new query vector.
- Print the IDs and distances of the closest matches.
Code Example
Make sure you’ve installed the library first:
pip install rust-annie # if not installed already
import numpy as np
from rust_annie import AnnIndex, Distance
index = AnnIndex(dim=128, metric=Distance.COSINE)
vectors = np.random.rand(1000, 128).astype(np.float32)
ids = np.arange(1000, dtype=np.int64)
index.add(vectors, ids)
query = np.random.rand(128).astype(np.float32)
top_ids, distances = index.search(query, k=5)
print("Top 5 nearest neighbors:")
for i in range(5):
print(f"ID: {top_ids[i]}, Distance: {distances[i]}")
Benchmark Results
Measured on a 6-core CPU:
| Setting | Pure Python | Rust (Annie) | Speedup |
|---|---|---|---|
N=5000, D=32, k=5 |
~0.31 ms | ~2.16 ms | 0.14× |
NOTE: Rust may appear slower on small single-query benchmarks. For larger workloads, use
.search_batchor multi-threaded execution to unleash its full power.
| 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!
| Operation | Dataset Size | Time (ms) | Speedup vs Python |
|---|---|---|---|
| Single Query (Brute) | 10,000 × 64 | 0.7 | 4× |
| Batch Query (64) | 10,000 × 64 | 0.23 | 12× |
| HNSW Query | 100,000 × 128 | 0.05 | 56× |
View Full Benchmark Dashboard →
You’ll find:
- Time-series plots for multiple configurations
- Speedup trends
- Auto-updating graphs on every push to
main
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, Distance.MANHATTAN
rust_annie.ThreadSafeAnnIndex
Same API as AnnIndex, safe for concurrent use.
Core Classes
| Class | Description |
|---|---|
| AnnIndex | Brute-force exact search |
| PyHnswIndex | Approximate HNSW index |
| ThreadSafeAnnIndex | Thread-safe wrapper for AnnIndex |
| Distance | Distance metrics (Euclidean, Cosine, etc) |
Key Methods
| Method | Description |
|---|---|
| add(data, ids) | Add vectors to index |
| search(query, k) | Single query search |
| search_batch(queries, k) | Batch query search |
| search_filter_py(query, k, filter_fn) | Filtered search |
| save(path) | Save index to disk |
| load(path) | Load index from disk |
Development & CI
CI runs on GitHub Actions, building wheels on Linux, Windows, macOS, plus:
cargo testpytestbenchmark.py&batch_benchmark.py&compare_results.py
# Run tests
cargo test
pytest tests/
# Run benchmarks
python scripts/benchmark.py
python scripts/batch_benchmark.py
# Generate documentation
mkdocs build
CI pipeline includes:
- Cross-platform builds (Linux, Windows, macOS)
- Unit tests and integration tests
- Performance benchmarking
- Documentation generation
Benchmark Automation
Benchmarks are tracked over time using:
scripts/benchmark.py— runs single-query performance testsdashboard.py— generates a Plotly dashboard + freshness badge- GitHub Actions auto-runs and updates benchmarks on every push to
main - Live Dashboard
GPU Acceleration
Annie optionally supports GPU-backed brute-force distance computation using cust (CUDA for Rust). It significantly accelerates batch queries and high-dimensional searches.
Supported:
- CUDA (NVIDIA GPUs, via
.ptx) - Batched L2 distance (prototype)
ROCm (AMD GPU) support is not yet available.
Enable GPU in Rust
Enable CUDA support for brute-force calculations:
# Install with GPU support
pip install rust-annie[gpu]
# Or build from source with GPU features
maturin develop --release --features gpu
Supported operations:
- Batch L2 distance calculations
- High-dimensional similarity search
Requirements:
- NVIDIA GPU with CUDA support
- CUDA Toolkit installed
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.2.2.tar.gz.
File metadata
- Download URL: rust_annie-0.2.2.tar.gz
- Upload date:
- Size: 83.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df770ebb6ad2616531af2860df99d645d51542b0d23f782508bc682281e58db8
|
|
| MD5 |
84f31febc438c52b0bdaeeda74b44ef4
|
|
| BLAKE2b-256 |
b775186ec952e212deb35e86a473f867fa248559db135eeb75d26a8a2e9058fc
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
988f46fe2a7189fa1d4bd4793e54a700ea31925e18dbe8dcbbd06b4521e5779a
|
|
| MD5 |
90527db997a8b74da1391a2c2f138b54
|
|
| BLAKE2b-256 |
a26270c726debecc2c345e03b2ceaf64fcd68a1b7959f7703b7b0b28662893c2
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7015f0b39fa84246676b82ac7aa0d1d19e4e0f65e7a643062f665430894e877d
|
|
| MD5 |
ed2b0007a37c72ed1d320ea86277acb8
|
|
| BLAKE2b-256 |
6a7ae4aeff00c29432f55b081ceb16940a6aac3932f0f7293b7f5ee47ae77051
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d87a22257d6d41a3db3b1898112b1c9970d5d85aee115779e50df37c0166987
|
|
| MD5 |
47fdc74a7e64a8c449d14c4e365d2265
|
|
| BLAKE2b-256 |
f3202e774056f58386d3b48b8369dd095e46c272ed8bd00e233f618d8e6f68c2
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba774d1fa8802da02ae78b9b9f9887a8b73181633d54edff2100a18ca9cf26bf
|
|
| MD5 |
f4149662c2ccea0f77437019ccdee10e
|
|
| BLAKE2b-256 |
dc8fa305d7a3852618f176746b56346c57ead8ce61efa34da68c093e7e93b891
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
786a33f036d0e71f71533bdcc62da7a172e3c09ae6c7705f8c2caf01d4b624d7
|
|
| MD5 |
d4006d761d187788200a7532ec803bfb
|
|
| BLAKE2b-256 |
7e35d11ebafa3cf44e82a630dc7756e883c3c6b48406b2b9816a55d20c872867
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23fdcf94dee65eebad7ce0d5cf577e9caee07dd5641fdd4ded5e57703fae3096
|
|
| MD5 |
87ef45629e9b805a75ad83bbdd945bf9
|
|
| BLAKE2b-256 |
a2207cfa785539039073730f783f9386f232de0392972f3a687057f05433d32f
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be6d55e8c10e313e6ae684299af83fd6e9b77a85705e9dd10d64ecf615bcf0ad
|
|
| MD5 |
a9a24cf2ddda505bc03307cdaf8dfbc0
|
|
| BLAKE2b-256 |
13ca804aa29636cbafe1515f02879a259b2e58af2226eadec00b6119bb3c133e
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
885235f9e40e2e3499d9a33b4b5edf51824173c6e2cddf24d5ba4cae0616c38a
|
|
| MD5 |
600bd810840f09ff9081905d76efd057
|
|
| BLAKE2b-256 |
c4e7f6f9429d5c78551f01e0fc776d1f9f1f12bfb938598ee08ecebefdc5a722
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
979c629eed30ad6f7babcc9e2401fd854007dab249b595ac828372efabfd7e72
|
|
| MD5 |
d4f8d092ccc340899419ba7c61c83d93
|
|
| BLAKE2b-256 |
3c9a175aa053c8b03add6338106aab65ea68601d10ea7436a0083e00873befe5
|
File details
Details for the file rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99f2ff14f844f172bd3e189166d0a815acf90bdbae1592e672c95f3479c252d0
|
|
| MD5 |
dfe56ee1294b3d11575d8df03f4f32f9
|
|
| BLAKE2b-256 |
30b8c468226e28b61f5439f79fccf0eb84839d704980ad86e7335f06e3e8b832
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ede553438871349c309cc3a4a07ef847de24bdc26aa9aa178a4c9b07e57a9d5c
|
|
| MD5 |
f9a8a75bebcde060738bb48a55d975a6
|
|
| BLAKE2b-256 |
22c36afab046ca93bf4c81e56a0b5a281468a1a71a03d977c46b92938d22afaf
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09f3d239845b419094bc7b315cad6b75133ddc7e97f5eaebad5c7f83deb5fd10
|
|
| MD5 |
8db8ca69c746018e6cdbd8e845ca42d4
|
|
| BLAKE2b-256 |
0461541a322cb27429cbfeb63de1f73e1f9e18eea15157b1fff4a5e232f825a9
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1d0ca0fc89d1317a25524c5c868474b4674406688db1f863f54a731b3322611
|
|
| MD5 |
ae93d72d702e5a8ee15b617e78370c47
|
|
| BLAKE2b-256 |
475664567a19bdd402e864245e392011848754ae052c11a3aeefc5019e0417d6
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e0cdab9661aeeea367c2386afdd4a94ddc19a431b45535e2893414dfffe434
|
|
| MD5 |
43640a8523138881962098d2ee95b944
|
|
| BLAKE2b-256 |
4b5e6de8a960a2d2ec9ffa25fb4dd43e3247f824de456767345c66aed7860ca1
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6488bfc90dfde4712e2de180634a309793960b73b6f12aa68566c6325acd2bc
|
|
| MD5 |
36b26bf9ca4a08b4830c353a240752b3
|
|
| BLAKE2b-256 |
7008c4a014c426de97701fb9845b037e802096a68c8cc8853b1b988eaf79f69a
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9ad069282142471f6ab5b1a82b2b59d4ebdd36daa58bfc7b531adede67f3700
|
|
| MD5 |
3fca3f26f2f57ff8c57cbdb0209fcee6
|
|
| BLAKE2b-256 |
b27fb307995e82c0bfa5785c25b3953cf0d9dbea239b84f5125a141e564e7bff
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b44b59cca36caddd086cea54b1870aea165778f9956ef5b30eb6dcd1f43e90c1
|
|
| MD5 |
3131b652428b0767938045d55c46c24a
|
|
| BLAKE2b-256 |
6ddd6d1e3d3f0dd37bbcd8b344ecf280a81eb77f650e7773672cee776e2e6168
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7636b50e43a67416f7a9046117d38eafdd9d3290e15edbc7853c42776cbbbc99
|
|
| MD5 |
fbfcc4ca9b36450dbda5508e311e8b99
|
|
| BLAKE2b-256 |
37a9178ef529b145b3798c2b3b256ae33254027f8bfbfdca59070afd89e30f5d
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8e8e7696d8e6deebc7fd6225796d3d79b485afe9b86355de2b1945cc5c5ed3b
|
|
| MD5 |
6f43e5a47b7de9098e66c6cbf2975b4c
|
|
| BLAKE2b-256 |
eaf61eb575e774d12f978ea3ff12cb2dacce2f495b027c7b32489ba0e16e9180
|
File details
Details for the file rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
674fdbc9ba0e4975eebbb0f670222d556fa69ea474a4639993f7920072e20711
|
|
| MD5 |
156318640e2b631fb7c7cea6b76c46ca
|
|
| BLAKE2b-256 |
8e6c7d6d51d0e46ed8a633a128c2ebd13732602ce1218b8fbc0c2fca9a0d72de
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e71d8ba6b2bc1c4bdbd0e83ce6ef9a4b9337d91f98fc94566d5fca4ed146caf3
|
|
| MD5 |
2154dac9e1d2360d5b6100609202ee67
|
|
| BLAKE2b-256 |
06015a87585e02816b6c48745c7fb54280d3837812069b5c66db70dcd8314889
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
683e3be2a6c70a532490dd9927ca6516d4fcd59164e7a8f692cc54900b4ba5aa
|
|
| MD5 |
060e5f9e39f62d5492aa21ac2637e2c9
|
|
| BLAKE2b-256 |
4512b20fb08d5afccab3b042dda0b6f0dfd538a2c97f14de1af30dd451b22b01
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86cadc4bcec159526941211917ed5c589ca435865f3cec4e7ac03aad92cee2cd
|
|
| MD5 |
183d5865a44060422738ccc4232799a4
|
|
| BLAKE2b-256 |
f83aac42813940f1064c99be2fe39b72e455cd58e3439d77a218a9fe7f94245f
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0daa23a641495db323724f44c2c8a447751de94381d50289395049aa179783b4
|
|
| MD5 |
3c01d90d9994455180a632352610f931
|
|
| BLAKE2b-256 |
c4906bb815ee60d05f85b60ae739877c9e0b129b026c06f1e4496e2f2016ab7a
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
227894845968242daa97303706e7b83615e4f0878aa4f8a833dacd37ddec6290
|
|
| MD5 |
bd397df6e3c8f36c54a42f0160318b41
|
|
| BLAKE2b-256 |
ee15004018e927e769415786e85e832e30321491e723d840c01d3e3686bee410
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee772fc00077c4b8b92f6c2e80b5e9a56556e00b491c310942e8882f8f3cdb17
|
|
| MD5 |
fd9f1d1904881da004d950d3d29da685
|
|
| BLAKE2b-256 |
c9858fe4103427d0c8166203f9189528eec958d58a0af90f2ff830419890b8a1
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9fa12959c126b5ab01926f1408f7827d0baf8ae528d597bd9eea8db492022e6
|
|
| MD5 |
b75f094d4f8081a678a1d975f697752c
|
|
| BLAKE2b-256 |
5c3a34ccbdce1d0d43dd7bfda5a71ea9b21eca4a3ed457d9332376041f61a97f
|
File details
Details for the file rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf11b7388e5f6bf02ba9ad26285dd13bd332f498b03e6b61dc4d1ea157007d39
|
|
| MD5 |
7d9759d772e7f15abdbc006c996a8f74
|
|
| BLAKE2b-256 |
a6a9c2809c55871fdbbe19a4e98bdb3709f42290c73fc3358d63c5a66ba1d55c
|
File details
Details for the file rust_annie-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de37ce53c0a5a22b5f250d2f73f58f847aa803a49e543a420d41a5cebc2635a4
|
|
| MD5 |
c2121ed84a74fa725ec9b3702ea15c51
|
|
| BLAKE2b-256 |
a7d7aa047c971148ec4b45a5980071009492b57e9216654233c5d3f97303ab98
|
File details
Details for the file rust_annie-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed35c65e7ad1b4db058c90a5f7a8901a522760e8c1a6d80ef6c4a7eb695485ca
|
|
| MD5 |
060792013f693a01e38f74860c2221ce
|
|
| BLAKE2b-256 |
2dc9fdfa5ba000bbb21061a43a12b8a322a3534f55f05bc21fc456fedee781ac
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45e63b8ad1e3e334bc16637b6e6a34fe50a29dd7bf74f1e91547fcc3b5489c67
|
|
| MD5 |
996c19cb7ab77bef6d4ca9696fdb8fb0
|
|
| BLAKE2b-256 |
2c3c75b4078a6e84520fbc2ac12b2cc2b6b417a66fb0aca393d5793e2a6db96a
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc3f88ca090c1b70ba8ac32f6e25651278ca906edd3cece982b607ccf56c31c3
|
|
| MD5 |
8d17dff6ea06296b715b0000ecfd4f41
|
|
| BLAKE2b-256 |
4484297d55f3ac647fd1a859b466eee1d4c0bf1d9861cf26c1400a5d8e5c9d69
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f98e45b10a217ea76f35903f645ffe00993191b04997c34607cc6715db43cad3
|
|
| MD5 |
e37fd8cdccde40fa9cd2dd0c6b21be65
|
|
| BLAKE2b-256 |
d9f6abd26a9a90c5eb719afabd9c6c7c3b77fba01495fdf64b84e53ab194dbcc
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e921563839889220ca1bfde97cf7d4e13d21181a92ea600fad9ba1bf7d49aa0f
|
|
| MD5 |
23a65c0c1265ef1bd722120762aebb4d
|
|
| BLAKE2b-256 |
aff6abea4e5b6e07da7f517389fe4e8d581968947b52b9dfadbd6d7fff63f0e0
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9e5d35e22bcf764d0319deea31875555ae3b7a9c7a3e6501e489663c59f5f96
|
|
| MD5 |
d6e81bf9c126bcd814b083ba9d675efc
|
|
| BLAKE2b-256 |
bef442b3a3ba34e8f93151cc33e5057ce81246f37eff61067de4a2d0b6f17718
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
428321dc17efa4a3df0d56109bb09710cf4ccc9948b448c39260d50cc1dcdaea
|
|
| MD5 |
1b7eaaf5d780125bca041f9e1dfb5cdc
|
|
| BLAKE2b-256 |
62328ae45d2350554c88f2efe38ef132bdc489fa119bf2bbb2c6f47300f17726
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f11410b1cc5be370de5522cc309817844950be3ef6bbbb8462e5b71be9c07c9
|
|
| MD5 |
45f790fbf9c2721afcb1023484ee155d
|
|
| BLAKE2b-256 |
15cd21fdb3950e10a7589835513aaca733a3be26e490632252acc51f47d175b3
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
442cb114aedd8727edff5491c300222d6d946b4fb9b7d12049fb25ca6f600322
|
|
| MD5 |
7308c8fdbc2a7bae32922a9ef0f6db29
|
|
| BLAKE2b-256 |
4df232ce4c97180ee3d52a19aa92ed92748435e6836df69d9d8a5eeda54452e2
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e318247f0a7ef896ecc8a97f5e017e0a9df09d65317488558aec3b712929e9e6
|
|
| MD5 |
f17834b0d2977dee83b5c77d3274b961
|
|
| BLAKE2b-256 |
a21f1121e42c1d60d5a07d992324930eea35e39c33b3ae652decc1a34b28fa21
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-win32.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
457f1342c314ddb1a6ea18b3b49a2d8cf5048486856ebe2e51cdeae47d96b533
|
|
| MD5 |
c68270b2b02d31acef6a9a87961a9d27
|
|
| BLAKE2b-256 |
c269c0d23f4534d58aa697d42c1cdb80541bae06be727d2a9074cf5a8afa643d
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d452c29827b40136ee4a10ea9ab15700dd36a45e5624a900bb9ae49d1b066a02
|
|
| MD5 |
78245e533257d8ca4e23c95d6e997428
|
|
| BLAKE2b-256 |
1f4657861735a8a21abe75d42c77ee69213715cc1a4db5edefca623e188308f7
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73860b198d9f8a3819030828cd6ab23c77edf33cbdc052dca9157e29814ff620
|
|
| MD5 |
dc19d6b9c9d5c424a54bc4a44be678d8
|
|
| BLAKE2b-256 |
2f1baa27332cfc6538dfddf0d6ddbf14d931585c75e9f546e9df54e30fa01a30
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cc3591b5d8778eb606288a7e21270668d92ce8404b73491094ad24740126a82
|
|
| MD5 |
5c865a769cbb1309274afe8cb3dab429
|
|
| BLAKE2b-256 |
56f803b1ec8385a2b46370d57a47691e1f12883df09d4e5983c9eec6f367039b
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b4ac872b94fdc12d9bbf3714eab4ffa4075734645b84f52b8f21656ed1980bf
|
|
| MD5 |
bec56aec9a53dbec65a937d0efbbe2cf
|
|
| BLAKE2b-256 |
2878fcf2b405882c63c9ec4cb76757b216e1e951431489e78d350220d267c65b
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4497b0039313e31e79d70f9dd09bfceb6b28eb145091fb86f2edf0fe07b2aaa
|
|
| MD5 |
bf1a444466087bf211a3e4d970b5903a
|
|
| BLAKE2b-256 |
a7ce375caa60c11687fbebcd0c2ee0c95ce3a3afd0b642fd9f8482ae62133f23
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
573e779d75296268c7d664211aab9ccae2af3823a4ff31172665f31f2d1dfe77
|
|
| MD5 |
79ad7197616f04a3a321d44644eb20f7
|
|
| BLAKE2b-256 |
6a87c5d72dd692fe38876f0eb9c3bbe41f4e8d4887eb79a0d74b92f1fcada0c2
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e38de7df42a04cb5fe6960dad25b2e651445319ca832b512f912789b33c83f7d
|
|
| MD5 |
9e85fc9d4f73460a656211976db563c8
|
|
| BLAKE2b-256 |
096383026e02d65c8618488aa96da303a904702e2e60d36bce1d3d2ffd791046
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b33b351b2ee01ae8077fc6aa3aab8702f5828c713a05ad87e787667a6654ec6e
|
|
| MD5 |
fe6be891ecfa2af39c51ab9a272c90cf
|
|
| BLAKE2b-256 |
ab466d8907f10941accf31a67b6b2b08de58b54b3e7315143fc267c95e8d236e
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
267974b247ee4ac0a861194c01472e9eaa771c3ec6099389ea152fa3d984f38a
|
|
| MD5 |
cece4ab0a58b3b6a62c4c5e399732cbb
|
|
| BLAKE2b-256 |
33cf05172a8942665c73d797e136233a9634059de34e38660442ff0c8437f6df
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f03643c1586e48ece4796f7feab76ac6572fb8f782067e4008191328bb6dc8e3
|
|
| MD5 |
f2e90447e9ba2be2ae48dc0f6b77e024
|
|
| BLAKE2b-256 |
4462168595ee07eb5649ee325fd76cd8cb133634f9a8b960427a0bb2b4ab1145
|
File details
Details for the file rust_annie-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
379b394e4c69e0562347966c0f216ae24d00300f3bf1c8b8d871a451283513d4
|
|
| MD5 |
a78616440af05ca27ac672dc40685927
|
|
| BLAKE2b-256 |
d449a1ad5b6a2ac2753f7b039bc13fc6d049bee95c664bfd56b0810cbc427895
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20e29913526a3d84af21cf069890643e15411e0c1a4ecff19f9d2f6e9df004fc
|
|
| MD5 |
ec69d693204870256d275944eceb7b59
|
|
| BLAKE2b-256 |
6174839079bf0decfdd69d3a90ce15ae513c46201a920a27a581e8b8bb5190a2
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-win32.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb79ee61af5555bbe3a3af1c54b8445908273101bc9df7dae92d8dd0f66cf9d9
|
|
| MD5 |
b94b9ee1a4c4b40a6d530ae814163740
|
|
| BLAKE2b-256 |
9430feff44692245ed2f225b86f66cd7295af4e53ee4b28f38674862e1b79bb0
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfc4f4b90b0cdced2c7c81d251d035b013f0818fca11c0ae497b471649ee89c6
|
|
| MD5 |
4c54fca36a3852d3aae4abed3b4e881a
|
|
| BLAKE2b-256 |
a9193d0155d1e25a1bdd7b16d3341f929f929ecd920d9fc878cf831657427b18
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b871f56e2f823544d55bb589b600bcbd5d06f6d7858d8219371229573a241357
|
|
| MD5 |
011c50db6fe094adeb03eb483dba89b8
|
|
| BLAKE2b-256 |
fc8949981cb423f7caee5a3d5c7cf5e547eb5631c4401a33d42a411a92aa7460
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86703498ada608404440680dfc31c789fe3dfdd548f7745793db8a60f06654f3
|
|
| MD5 |
5beaa9af68b6336bc209ad28377c1f8e
|
|
| BLAKE2b-256 |
51937a0f7c109f50336ccd1264641dffcf6c6b821bfad1a68497e3e08249d0da
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74ff12eab442b39045b89551c32220d837ef89ee402c3a998477cf1707e821af
|
|
| MD5 |
52f6c027d0812e5c443eb828a1990e98
|
|
| BLAKE2b-256 |
68279ea5a645902b892d8f4eaa2f21d3cb5aa4344a60af23ffa291a2524501a5
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8a3c3f634e3113eec18b96c9c8821c99b04c425fe545746d33b9b8082776bc3
|
|
| MD5 |
5173b9206e36a86fed798e363b9cf654
|
|
| BLAKE2b-256 |
8e3569ded697c937517e15b409ae1fed6e5b6cf542989434c7846efb25ecdfbf
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2871fd4f0d412b67b785a8dea9746ddd509235c8287f90202533d76403ddbcd
|
|
| MD5 |
954b05902036c9c1fbbf4f15e25a9775
|
|
| BLAKE2b-256 |
135a73237b1e2b6e37f28b938cb40c7cc26995514c86cc898f330fc7b95c99cd
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bda418557367f9bbd9ce01035e8661cefb082157d7752a3535c51e176ed0c26
|
|
| MD5 |
22a7746f53a9fb9b4096f3605110aea0
|
|
| BLAKE2b-256 |
ce6d8ac9c0bea6fffc26c9489122b88fd421d753cfb2039fc30e816aae5f774d
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2f8ad06bfc316834f8b005abf7e60815ca30affec07b22764bbdb7991435e60
|
|
| MD5 |
e3bcf55baa7b3698c4a1aa87a16464c7
|
|
| BLAKE2b-256 |
d150405fbdd38cf3611a34c47ee3df04862b3bdf80c1179c0186066a5facc48a
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d5390a83b045981bc8b5051ae5ecf3a66a1d6076f64c699db00b9a2a9e82c1b
|
|
| MD5 |
ee71158cabf7160488157103f87533d2
|
|
| BLAKE2b-256 |
3fe71d6312dec7f10c4eca4cea2326ad3ca93af9e35c398bf9dcf9ead415cd24
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a4cef32c22ab2500be6bd5bb5790f6edb4404cec97051b4601584ba614b829c
|
|
| MD5 |
e6c307eb0c5e6a87f2fb84dc8e747a79
|
|
| BLAKE2b-256 |
041ed2a18c0085b4ecdbbb238bca73880499c51026c5ffc3fd837fe9a89332cd
|
File details
Details for the file rust_annie-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1869c0033edf3a4f5d2f72cb6bbd56d8daf1a4e44ae7021e88b8cb986a93c0f8
|
|
| MD5 |
e7a46b784ada13cbddb4b284884fa9ec
|
|
| BLAKE2b-256 |
bf4039c60a52330f04a4809660b1cb8a1c52fb1b9ff88905db958f8060dddd1a
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e21b8885f7ee59394d2159c76937a9259d8d011a8908f53d22460d7986fee06
|
|
| MD5 |
6c05d0fbef3b958ebb35ae34fc582361
|
|
| BLAKE2b-256 |
799501da3eb3eb130cb93429e0a86d2fbbc205b8a938aa86804319824efe43c2
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-win32.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a2cf37268d47d4444493d3c9de4bcaba68b0b2d3ee63f11e8d775b7f92753a9
|
|
| MD5 |
e54a1e8efe906ece5de0a3a6e6f9e44c
|
|
| BLAKE2b-256 |
c8bcc2a04a30b4ae56c969e22eb46c3f97c8abede8caff60b38a2d8c5e7e0f4c
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72de8ff0359377485f8b4750a5b5d505fe6865ae72c20c73843555eb0e282f9f
|
|
| MD5 |
4005ea74066065ccec19f55590449ef8
|
|
| BLAKE2b-256 |
7153d107b10fcf0982685a3707afa6ef21eddacedc1e8167d88b5e5defb6edac
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22b8eec15ab565d54d96390a4a63c1f5b913d8f32a8f676c3efa7abc1728b84c
|
|
| MD5 |
e53a8e17a7dd28327e5692f49209fcc5
|
|
| BLAKE2b-256 |
273e04bfbab9ccafe10bb9f59b22e7ddb0dc2254588e006b21fc9178cdcfa3e6
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9627546a2dbeed7fcbdf187a7dc743ce02d3b2173618c13c089c985885a2506f
|
|
| MD5 |
fff9bd37c79d12c07e4f183ce6465063
|
|
| BLAKE2b-256 |
16a14441dc4af6dd9f7737eabc41cd193a3fbb46244b9ae6def725d3ec0b8a12
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7735322b8a5c7c1c24c60b65b8be0edba6560951bb94b085650a528e9fda4774
|
|
| MD5 |
2d00fd270d8afcc9c6fe87502249cf7e
|
|
| BLAKE2b-256 |
120c807b1176ea2112f8d532e2e16f289a244a201cb77125a5724d15a50aa4e7
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4885c48133e61bf24384f4c409dedcc4305ef81e1bc622dfdc1b72ceb640d364
|
|
| MD5 |
8cdb3dc7984bfa640ca9ca56bb0cb702
|
|
| BLAKE2b-256 |
1362afa429cad368696c51e909729775ed9dfc17127859420d049725e55a0750
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2163213e876c32f543e91fe3cb484a6f074007c209ddcf130951e4c6cdbc5d0
|
|
| MD5 |
daf48b0aa626bdbf4e3755b63048322b
|
|
| BLAKE2b-256 |
ab24ab21a1428060c0829df5f0e49eaea3c702d23a2f508fcce3490afc8e892b
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82c93432860fea605113ed845faa5645d19417ac9d0c52f5ec4161f03f138a5b
|
|
| MD5 |
15c1b7b4875bb9f8b222968b4b4e2354
|
|
| BLAKE2b-256 |
8599a80dae15bfcba827383465534474eb07b4d40d9bd4661ec054998be089e5
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
561dd91b11ff0004b4ca892734c7e844af55b921376e6a8b54390562266e8f9d
|
|
| MD5 |
3fc3fff5a6671c9992ddf5ec0299b628
|
|
| BLAKE2b-256 |
91a262e21865b62ae7b65ecc7a026c9f8a1a8345b66b6e09e47092e4d8306d18
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60121d931214293868977c7eb50000a168f94e06ae29443fb8968bb9d90b95fc
|
|
| MD5 |
3b5776d0a7216159e038ded03703d0bc
|
|
| BLAKE2b-256 |
4e0c75f0550d2b0c85169f13c601b3b00ce01cf74c4acbd2538ff80d84469810
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8c78b1db6a434ee6131c843a3e094ec418b8907dcce66c9c7174f78dcfa3b00
|
|
| MD5 |
d4ebdbd2689756a726d19a23092d92f5
|
|
| BLAKE2b-256 |
04d55d4f6d9e1604f62e2de4df4479909a1ab092c92aa29a9804c9443ddaa1d9
|
File details
Details for the file rust_annie-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99d955f7ea47f53ed4a821f205c3f2b2e7e2999e8ab6ac9a6133707347f65e42
|
|
| MD5 |
6153b0a285b83289ad1bf3d46205e702
|
|
| BLAKE2b-256 |
66f1ecc8c089ec44666fd627d39c0b4044208470cd6e8d0af7b401c236536c2b
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f99965887d2b2bff7967111dafdb46c38b48b457e932ad689b4ab5a357c9f61
|
|
| MD5 |
b98637826cc463634ea6b3d0945a5bd0
|
|
| BLAKE2b-256 |
b0a2cb3bba2805b681effa5379bbc79c74229626404825a40818fb57f3807c7c
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-win32.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
120f09615c0775150099b27b48679a791b09c4c5ce9999fe1887cb0282935213
|
|
| MD5 |
1d2a758f37c495768974485f22b92498
|
|
| BLAKE2b-256 |
6faaa28b055a8a48eb8340ab28d14cc587b1b2dee4bf935182ed0ddc49f18f88
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18cf5cd7de911bfecd9caadc1ef95a6ccf806146fe0f6353be43ef1a96779e5f
|
|
| MD5 |
bf290b15d2c04477f8923d9363e132b7
|
|
| BLAKE2b-256 |
a1c7398ea391214adee6392e7cb83642f0d70d435e2c04ad0f4a8cfd5c61fe46
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ab832d11b925f5a29af16f85c9f482b9ab7f9d2da493d31f7707617a178d810
|
|
| MD5 |
25f570fb7bd95039eda96adfc7ff6291
|
|
| BLAKE2b-256 |
3cc2e29e53bbe1b471d517b650a40d2cba36077139ef0690c1f2081f854280a3
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef5e0c6893aa65f234d043bc10f03da5a6cf0d371ef34c5493ab95255c55aab5
|
|
| MD5 |
9f03ac0f0a6e6b86a6df41e58d108e1a
|
|
| BLAKE2b-256 |
4532d6152c39a0c7108364aecf21dd1f6bbcac8f5d8d9bc198334ed074c0030d
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0a11fe041cd6f5c2a22be5e8165bfa3c502969719e798c957c6b85572786539
|
|
| MD5 |
50f3082e3ccfd9261b7b5d9a7c5630d3
|
|
| BLAKE2b-256 |
778735f6cedf727ec5f4252d5c014a14b77e98b296e51155ca748026a78778a1
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
265da3d5bf994373f87b9a3983baa6270758c694cbd4864932784590c05a5422
|
|
| MD5 |
5fc18b0640234530e6b049e9351351c3
|
|
| BLAKE2b-256 |
8d6d85b178520d66bd613007a84fcaa512f1434b7cf02b2375f6d953e4bbd011
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04b7ede6bb4b3beb723450abd3588ea692f1654778d50c9f1a3b9e4d637f38d8
|
|
| MD5 |
3c301e401adf9c6829a44184c1b55548
|
|
| BLAKE2b-256 |
fca0d9424014f3e9339669910c9525327f524a4e825b93ee3b484131e5a9a3b6
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81fae8a70b7764196da0eb54829826c200e1eeba152977dd0a972ad65a2ff8ae
|
|
| MD5 |
2ed5b6aaf43f0476abe930e10c8ec657
|
|
| BLAKE2b-256 |
8a708953683d44f29653f976a57af74e531180f7d4bfb6526245d971418d4560
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebc4ad4816bff2d469b6f85c7dd19df026c7bfafe1d6cd6a0025b326102c2e2d
|
|
| MD5 |
c7ae93244ee8190c1e27ee1ebcab07af
|
|
| BLAKE2b-256 |
8dbd9a3314d396b5e9650a685293bbae2be1a944b32496319889a11faf5c9799
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1119eb5e9e73337c7406bc74ee99b37d79bcada177fa6ed7989fe76632677f7
|
|
| MD5 |
095f4194cd1a6210ef79a3f28b7244e9
|
|
| BLAKE2b-256 |
4a05a9b966967b70e628f61c16c48632ebcdfb20eb2a1d97dcbadbce874afc74
|
File details
Details for the file rust_annie-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1360aca247cde3a2bf26fb20fa5f89027965ba46200227e760a30e9c65b2fd6
|
|
| MD5 |
21167e39eb8bdebef75f87deb97a7aff
|
|
| BLAKE2b-256 |
64380c11c9938d154419ffc9a166d10bb5ca049e4b6980b23c7e6d615623d7c9
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5077ab89e42c862518a3c70df99e0a4e88ab757351e956d72447b1c6a319656f
|
|
| MD5 |
c4488d1892855489e12f62efe2e40a87
|
|
| BLAKE2b-256 |
068403298e026fb401e22676f1640528394ce974b01e202b662021cf12ee9a6c
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-win32.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0297b5a16312fb7db05f4b1b6a3a6a21271d22d8469c4b0c53f1a5230ddb76ec
|
|
| MD5 |
9716ccc2cfc2156ced8271eddb633cfb
|
|
| BLAKE2b-256 |
abc098ca64cb3aa214f7480e42d67b12500390514916d65ed305c579a02b5604
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd7b35574e0ab4625faffa94245b58d5f29ec823d465df7daf32988e10ab3e0d
|
|
| MD5 |
f545b3789cde8decdb42096a5bd95fff
|
|
| BLAKE2b-256 |
118c9965b4bdbafe20caa7a1e73fcc7c014d29fc0d09772f2110b997bd406829
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
419d6125438f18cb87c609881bf0fb72c69f07405844d6045dd07d1d8fe8b4ac
|
|
| MD5 |
338f98c165a67290dc133032a0555772
|
|
| BLAKE2b-256 |
ce4a81bbc9556158ba4cdd23a31ea4e4e0b0089f8bdc264a2224e9aebae5b345
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a5eab412a582bcea415a60ad4582ccd063deb92f1c00701d4061f07eff11d60
|
|
| MD5 |
3eff99d27a1d5e8cf0437f30ba26f1ca
|
|
| BLAKE2b-256 |
e9ed7566f69706e912d7cf0a7cfc3efc4d7e8835d7f7bc4a769fec70f57dd7c8
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b1accdc4bbbdbfa8957de9666c4c43fda11a4920b84e40bec51fe6e94abcf52
|
|
| MD5 |
95be5bb1f17a60a2461abbc1c79a7262
|
|
| BLAKE2b-256 |
7e7123e3fe9f4b83394e38b4fe5fa18832e553c38ae650a163c07df128317924
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
331b88d29c7649459cffe4c418b80261392d3111d0499542e9b9900db4ad0160
|
|
| MD5 |
02d2e7672e8ca91a07b17a72766e8b06
|
|
| BLAKE2b-256 |
82ac19dc5c10fbe3a368631221b1bc9fc16b59ddc5a9a4c493c1dfa0fcebc326
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
291d25f199d4acba6827ec7504448b510b4ad8a78da82b8669bbb8b3c644da3e
|
|
| MD5 |
9888875c2e2e28855faafe3ab3a7ee17
|
|
| BLAKE2b-256 |
2d73fbc730ffd4fbf99f93b6614ca2fbc75d20763bbd453e91e4f09c7c88d2b5
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16c601d1cdaded679f4290998b6a9c01b35f1634da4d59f98c9a018d9e397357
|
|
| MD5 |
827024a20079e1ba40afe9cf6e26a70d
|
|
| BLAKE2b-256 |
db349d73d6483125f45385b312c5fb2f7a56efe77857b1850288af0360f2096d
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d238496a056412b36517d626a9e44ec26434b1e30841ec148e25c96930959b8
|
|
| MD5 |
ab4fedc4a4c10b99cfe104756ed3393c
|
|
| BLAKE2b-256 |
013ba78d69702f10c762575cfe06b4b22621e2b0f75b9cb7dd49156ef18b4c2e
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6616251b7d91189bdb70214f494568b69aaa2ec7f89e1cda59fa87c09812802
|
|
| MD5 |
1ae40169f21ef8ad7b042c6ba82b8b1c
|
|
| BLAKE2b-256 |
8a00f0d5711559549129e153fc7845cbe70c53b372f09a0906b58926d9dafc1b
|
File details
Details for the file rust_annie-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9de679bceecf2d8f06709060bfe442eb13d17e4b6ae12eac9ed132d7077c1178
|
|
| MD5 |
7c80de2e32b8d39fe55eb7e390517981
|
|
| BLAKE2b-256 |
d1fffb8bfa175fdca6659d7118045621393a53b062d3134c4be04ea7b2b76da5
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8443bd48879aa5da2e7fbf054278206df7b5cebf702ad21bccb47c4f6b072013
|
|
| MD5 |
68ebbc46300ce2c444e2d65e1bbeaecd
|
|
| BLAKE2b-256 |
3ad54c8cd76c0d7b2e222207a0d4df4f7601aee6f16a015d877d8fcce5b6efb5
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af7dd8fb89df149b24196c4a8ca626a772ef6cf77158db831a4176ae346bb1f2
|
|
| MD5 |
67247f7f5bbfab050069cb77377374cd
|
|
| BLAKE2b-256 |
fea4649beb4e7fe66b5e8384112ef9e9d51d3bf2957b1b537e6c84e723be23e3
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e82872a45ecc7c8e0c175a32171736a66e1fe4b0221c7891b346a8f072e2811
|
|
| MD5 |
803a47a20204d7a4102689dc4f7d1a67
|
|
| BLAKE2b-256 |
c5082f0fcde2e1301265f542f0e035c4eed56674921adfa16786361ede041195
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1c0e0692e9bbed373dc644a0a8a025b933f5ca92d9f428b1587fec47c673856
|
|
| MD5 |
590b3e56aeee69c9385fe25c460e8e44
|
|
| BLAKE2b-256 |
69ce9604605d0dfd1910c2c679cd76c2a1f3bf1150bd705abac04fb7d31ae7bc
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e1762781d8f7e0efd516317981d4f4df32da277ce2499ab7ae3c9a419c2f1ec
|
|
| MD5 |
47b986808f0796ced60d524c1007ae57
|
|
| BLAKE2b-256 |
a32c95ceb6c5da13e3eef40db19150708066f460118d47aece382a163c80cd50
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
506522e30c4af596fc33d5a257cef0f345e1687f46db4340fd7eaf7c10fbb82e
|
|
| MD5 |
ab16e2c3aa918aaa5903890bf47e29cb
|
|
| BLAKE2b-256 |
2818ad428b4cee3277d59e8f42312ecef9dcce6ba0177af33509f261a46d19e8
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c21f9b2e430e86cac29e550caf6cae9c50c5c202b273524c6cc6cfa2601d95a
|
|
| MD5 |
4e8dd36802f396ddd18a576da97c02f2
|
|
| BLAKE2b-256 |
90c32d35905aa8e2cc247f8be5fc8d1b3cf05a09b1b33999533e9e4f4c0d3f7b
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70bda48c72f8a34421ef80ae97c93de41b5810a44aec0038b43030530cfad7d0
|
|
| MD5 |
26857e8b71d28224f42960951e467ca6
|
|
| BLAKE2b-256 |
0e5a5741b8b5cb5060888fb8943c805a42ad97275ce7a3c99fa2b57b55824034
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fedb8dfb5b15dcb51fd38b6e8e904830e4caaad3bae933f0b89ffd93d093852
|
|
| MD5 |
3c07d224ef8d06f845e894004b76ada8
|
|
| BLAKE2b-256 |
14992c34bb4adca00f33789b9465253c645c635a2586360307deb84f87adc90e
|
File details
Details for the file rust_annie-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rust_annie-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96ad67e8d3babff958b69b1830b6f308863a05b9c459a0be82f045852df65fb5
|
|
| MD5 |
0096a76e44ac1d347d5c0dfd3584744f
|
|
| BLAKE2b-256 |
aabc47c0aa5450b176b7f95566f6c447b24e39025e974cd106fd46f7f1d73885
|