Skip to main content

vectorsearch-rs

A tiny, fast in-memory vector store with cosine-similarity search, written in Rust and exposed to Python via pyo3. It does one thing: keep a pile of equal-length vectors, each tagged with an integer id, and return the top_k most similar ids to a query, with a parallel search path for large stores.

No index building, no config, no server. Just insert and search.

Install

pip install vectorsearch-rs

To build from source you need a Rust toolchain and maturin:

pip install maturin
maturin develop --release   # builds and installs into the active venv

Usage

from vectorsearch_rs import Vectorstore, cosine_similarity

# Every vector must have this many dimensions.
store = Vectorstore(vector_size=3)

store.insert([1.0, 2.0, 3.0], 1)
store.insert([1.0, 2.0, 4.0], 2)
store.insert([9.0, 0.0, 0.0], 3)

# Metadata lives on the Python side, keyed by the same ids.
meta = {1: {"title": "first"}, 2: {"title": "second"}, 3: {"title": "third"}}

# search returns a list of (score, id), most similar first.
for score, id in store.search([1.0, 2.0, 3.5], top_k=2):
    print(score, id, meta[id])

# For large stores, spread the scan across threads (defaults to all cores).
store.parallel_search([1.0, 2.0, 3.5], top_k=2, n_threads=8)

len(store)                                 # -> 3
cosine_similarity([1.0, 0.0], [1.0, 0.0])  # -> 1.0

You can also seed the store at construction time:

store = Vectorstore(3, [([1.0, 2.0, 3.0], 1), ([0.0, 1.0, 0.0], 2)])

To run the benchmarking script, you need to install the dev dependencies (numpy and scikit-learn)

Behaviour notes

  • Inserting or querying a vector whose length differs from vector_size raises ValueError.
  • Cosine similarity of a zero-magnitude vector is defined as 0.0 (rather than NaN), so zero vectors simply never match.
  • search is single-threaded; parallel_search fans the scan out across threads and merges the per-thread top-k. Both return identical results.

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vectorsearch_rs-0.1.0.tar.gz (58.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (515.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (549.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (586.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (481.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (331.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (311.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (305.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (326.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (327.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (510.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl (544.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (584.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (475.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (324.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (413.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (326.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (299.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

vectorsearch_rs-0.1.0-cp314-cp314-win_amd64.whl (150.5 kB view details)

Uploaded CPython 3.14Windows x86-64

vectorsearch_rs-0.1.0-cp314-cp314-win32.whl (142.7 kB view details)

Uploaded CPython 3.14Windows x86

vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (511.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_i686.whl (544.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (582.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (477.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (326.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

vectorsearch_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (262.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

vectorsearch_rs-0.1.0-cp313-cp313-win_amd64.whl (150.8 kB view details)

Uploaded CPython 3.13Windows x86-64

vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (511.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (544.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (582.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (477.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (411.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (327.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

vectorsearch_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (262.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

vectorsearch_rs-0.1.0-cp312-cp312-win_amd64.whl (150.9 kB view details)

Uploaded CPython 3.12Windows x86-64

vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (511.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (544.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (582.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (477.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (326.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

vectorsearch_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (262.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

vectorsearch_rs-0.1.0-cp311-cp311-win_amd64.whl (152.0 kB view details)

Uploaded CPython 3.11Windows x86-64

vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (514.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (547.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (584.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (480.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (329.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (303.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

vectorsearch_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (263.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

vectorsearch_rs-0.1.0-cp310-cp310-win_amd64.whl (152.0 kB view details)

Uploaded CPython 3.10Windows x86-64

vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (514.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (547.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (584.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (480.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (329.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (517.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (550.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (587.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (483.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (419.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (332.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file vectorsearch_rs-0.1.0.tar.gz.

File metadata

  • Download URL: vectorsearch_rs-0.1.0.tar.gz
  • Upload date:
  • Size: 58.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for vectorsearch_rs-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b5ff4801ffeb10d467add4de838c9a012acefb1eb3a66a24fa53fd458074c30b
MD5 13069e4763bd55e521c706526973b5a3
BLAKE2b-256 316bac2e02cfb99822aa408d6b085c9f2f85ce14912f3cb336d6128793904a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0.tar.gz:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cea2e01ca1b8c30446aedf482e893ae6606a17f1fc3d7e0d73199efe18cc9f41
MD5 b739976754abf8af273ce4340b55784b
BLAKE2b-256 3de5aaa6ef809da80350161c71ae94e65fa1f6f73edb58bd18b869d0d33fd977

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8aba390f3e874e02e912cd1b802b3cbb3d1f9732bead7b6c1c5cdd5a102f8a05
MD5 2b3bded233b721339b571fb3a237baa4
BLAKE2b-256 1cb5683c7f0e5bd01a52ad7d1bde8f5d614ac72e799ffe734574d29a1743059f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7f05609aa4b3d8c19d541c034e7f03f4c807727a06e181c1ad95546a1e9e286
MD5 f697b8e9f4adcee3c7dc7f61c2c89810
BLAKE2b-256 b601a72962653a48eab82d98d326a11abce700e7457c18994827080e3ad24e11

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1ea2d814a29086e10d8045d7e7c6c3f0d8cb2526caaf020299f5b57dd07157e
MD5 c30d5abc25205d0bcf50378396f398b0
BLAKE2b-256 8be60c411e204ded5fa7cd61946c87cd77198316ba330d033e1874a2330fb55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c2f03bddad793afeb1249be94d57789bf81bd9cf6e5274afa98a53aba9ccb08
MD5 ea089c0f85cc56186225cab3b63b735b
BLAKE2b-256 813354b6f0c8c1437378d330f242905e2166661a008a4aabe506383f975f33ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 693cae62bedf23f6f74c60a4e30ca435ed6fa1830042bfa60e5e011544ead9f4
MD5 799958c239360d965bc48c26676691a3
BLAKE2b-256 5b7ba5affb5a0e93b2e79065642afb7d15ba22e381089061020f8e8ed7e7e1e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a40a097922947f105c1b911b371a3478a53785896237a98351bd20b0ca72103a
MD5 126d83a9eb3e84ab8d4daa2fc60330fd
BLAKE2b-256 6e6fc6f812b40a6671e00598568b871522a99e46a3bad175301964786209a17e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6721ee6758afd35020ebf6c4aff70bb5222603d188d97eebda0886fa8c3e4d9a
MD5 6f5704b29d8bc61f9f8b6a5db8f60e32
BLAKE2b-256 2f48470fdb1f71c705dbea205dea9579497306e8a81f699ea33795354b575447

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 941947c07fe4643afaf8183c073da1061c787f76fb1ec0efe8a715485556ed1e
MD5 a3fed67fed4deca65f6032ee32eb0e76
BLAKE2b-256 50df44276c05ab7103f446fff51ab2b281137c0f5eed025d507e11cb4e310381

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af5b92a07d17fdc59cfbc634ef87ea2b506ede2867bbbbaf5363604ae55fe9b7
MD5 9a265d3d392242ec5c768962f8070274
BLAKE2b-256 d180d220652d9a8ba6bdda19dce007e9bc7c8a1a242060a2f40c52184c76eaf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39cb55d3b7636541ec5485eb4a454d078452c725544989ac753fb300214bbc05
MD5 c98878290967cf90d99035b7c73f056f
BLAKE2b-256 ff06781d4465e57411fe2130d873270f7f81076f9b0edb3fcd19228366a49b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c5e1f30b99c0e15a9f4287c239cda82191268cfa419ea922e38f80c21f04692
MD5 04516ae0ca41be2ad9808426b9e40af4
BLAKE2b-256 74a7d9b5cbac63e93fd20f6209e73c7d888146766e140c53e5eb71a797a21fb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48b595d4e008e6d7cb6850d15934f6193668b5031be11bacdb0fd4ffb795c20b
MD5 0c7011bc224e8e92d00dc8782f232662
BLAKE2b-256 0d21406a68533eac123cef2d9ea47789e35201c190604a5986f8dd4425754306

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8dd144603cc514b14b7097b3512e38335bc168d803ddc108848c70ae07d818d1
MD5 78b5725d7cd92f3e5f365287dbaef583
BLAKE2b-256 ab86e4f1456cc319d01885637e78deb0aea06bf17ce13917d135d70a6385e80f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 112ae9c4ef7af70977572156f3291c4b563763b20cdaa540aaa8b4f0cbd29bb3
MD5 a46089bbf150446f69ea41bf2d344632
BLAKE2b-256 ce5ba48249b4cab7bc770187618a40bb5048762c2a6cf214a06d4e4ac9085f32

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 444b29d02153f1c3757ed864e406cbd6af1d4c5b4012216d490e95acd61acc57
MD5 b39b9d574e4b5051a747413a32007bd0
BLAKE2b-256 25deb14d8f33ba7c32da095d3002fe0f3c61c882731cc15e14a5071f49a246fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78155e8c2dc11e95e74eefec9e81cd7147d6266952f294fde4a25cf212b4931a
MD5 d7692ed31f0b89e557001edb258814f4
BLAKE2b-256 c83e7c323a09a10be9780eb7e02bb43a708983fbcc57cc25af6d894c187182f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58b1488fd796194078ef8a92c6b5042f502fa0bbbb221199306ee49432191a24
MD5 9c81985c1255626757bbda3aa2864994
BLAKE2b-256 bd644ac29e00f0cd59e8fd5577f359cadc19d6a9a4c9d6b9391bc4d84b53cc1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a7db3b949d1a937577d71a066baf274e9a7413f04e04b73468a2500405b786c
MD5 188b82479bf7def9191784a696c4e280
BLAKE2b-256 8e16d9089375cf7b8ce158f6ff646ca2046e936f057371f090d427f0c21ea722

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d33a4e6a1111ff348ce0ad26426732ef83e68ed8bc81b4156a7dfb2ef84125ec
MD5 b90f2ef581f4e2dd3307feb004b7d12d
BLAKE2b-256 68a8f0f31ce31a99f9c0f0166a55116d57397d3f7d5d26346b55be94e3f64400

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26bdf953737e10e879cffd4e45634128e2e2ae11ed470a8497dcadef6013b9ea
MD5 f8b0f790436dd6160412eef284508d17
BLAKE2b-256 09a2d55acd6f73e89510c7a26a3fd044f98ea91aed433eb8cce3750319bc1331

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fc5966402c8e024f6c3201a8c2efb5301f06909e4fa085411aa696b4158c9c8
MD5 44c636242135e4e7fd82248a2a33bcf2
BLAKE2b-256 87871bfafdc79db098dcdec5e77744ea1fe71d85419cb5da2435688027dbbf33

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 136360ea582302b1b3c602a3b12543d5cc2479324ede2dbd5be94a38dc7b3c21
MD5 4c6fdf10dac07bd1c23bd06c08993ba7
BLAKE2b-256 6e0fd712f20142a97d871caa6fe5fe313e0fe37e3cd8a61bf06e6bb6385a9165

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bd1231f821a7d4a5ac8f60af0e1fc81000c7412a5fc9dad9b9ae9950a13acba
MD5 ac80b1244da4c14a5377fe275b11c6ca
BLAKE2b-256 39c80aebdaae100f0a0ed6c7ea515f68079b9e9cbc2f72d8b944cc892a79409d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 be79d94193331fd373930c37f49d148aa6df8f0f09224b75fe2eb6ecbc03e181
MD5 9c676e9d46114d48b1d3af3eabda2d19
BLAKE2b-256 4e425c67cfbb8fe4aed8e4714f29bc33573bf4f975cf64a291e62155965cc895

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 115e04d199b589d16c64bbfc322472d6e895fdd5652b694b8d65f515f61430a7
MD5 3b800586bc2e646e4007da95fcce08bc
BLAKE2b-256 236e9bbdfb85d8133dfbcf632724edc9ac1f2e7f3f0dabf31577ad75d5cbd44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-win32.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecb57a555b6a179e2db710423797eb28c85529f0872f221350f5066b03e8f84f
MD5 13c48404cf02c8aa89717ca95d2941b5
BLAKE2b-256 829978c1610e21dabd448f172fbd3b07ff5fd8d54e8f2cc1ed5f10e9fdb1cf58

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3667739ac858d454d5317945e41826b1da36d233c9e7df90f07906a05495604
MD5 9807be2a6ce37d09878109ca3ac94d21
BLAKE2b-256 8042939421f59218a5e76767db1e8c803904a58e914e7a58e97008c227b038a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 149b369aed94d2755568326c8f3db904ae4a764ba25bfea4e6430881c34fdfa7
MD5 2a43d135d767221aa0d0f45e64b8f927
BLAKE2b-256 baf2295ab8cfab6edb291c6dd02ace17c6dc8f8652bc8520fab2e3cd0d2d2a0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77c52b58aaeb9e75a64753e26a56dc14f029d12775b8e6c9913b803da925da02
MD5 5829413ef5e63b917585393577fb818a
BLAKE2b-256 8c655f939f92700eb7851c2b57109c2db0f13ee3ee9fa0dee8de75a3352b9c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d93ddbe818eeba8d573805e92d7a4f923093fcca4f4735feb2448688d355269c
MD5 53dedc7bd81eff1a79be21eccdbcc2bc
BLAKE2b-256 6f6be93a4b172441b82ce546958912b3aeecf1c0593abb2adaa9e342d6a6d62a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf9bcd3b80979a57b13fc690cac33232c96c3b69c6393ee3c688321f7462214e
MD5 221f960a85df59c8758e311ea03665e0
BLAKE2b-256 d46dfba59f784b321e95753b31bc8ca9ec0885b9da20f4fbe226fa313952eafe

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d5dbe6e3cb1677211b433de3f7a656737ba03f8448b2ebf63b85447ec312c69
MD5 21043e8961685d4d1cb6fb9b63d35561
BLAKE2b-256 e165d308069605541eb05aede1db6caddcfb33cbabe8eb0d99e0e9c05c06081e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 781b072aae4a88056c01025829aadb9ada94914a645b1fb0c2e5fa413432634b
MD5 cbeeaa3d3ac15feaafc961c08fcda9c2
BLAKE2b-256 b0388c0215124f4d96088fe997ddca697e257a3e7e4ab1ac49e39e0c79fdde40

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74c704cefd2b521c75e4012346ed7d8529cdbaeb0c04e92d83a76d7667fa6467
MD5 49961328854a62a22252c5ecbb4f4d5b
BLAKE2b-256 176ae3501a53a40ceafec5f5ff2a76cb9a82d615c8653d50a18ae1ac89b938d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42fe6a310f9db1e94d61211c1eb28d09c9259ddd8bf1636abb67f74865227bbe
MD5 d2483275d7fb959521e0b5af0f7a53ca
BLAKE2b-256 b470f45fbe04d4ca08a6cd9c63046b4c3c22919287e032ff564b7da1f4ddca20

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 290654097628195956e0a01161f0d81e91f5f24765aade3643a659a77dcd3911
MD5 70e5a5362213254eca89de5f93b25477
BLAKE2b-256 cf6ff9654bbdafbe8c108e4f1bc9217602cdbb396c3a1631baebd9fcb0908887

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20e34e461aa399b067fe9b581bffa412e18e73daf108b86615ab6394b9824364
MD5 42a2ddf193f1eb230fa24282e00e034e
BLAKE2b-256 9cb9d7424d26f05cc26a0a26941629d303eba836683dbb144713cda981acf670

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de2cd456eebabeaf21d07df5c8e56d003b29bafd53ff6a6186492c6fc59f0c86
MD5 290a20d13fa0b89fa307490427bffd6b
BLAKE2b-256 91abc5a453651c83ad23563d05390bc782136de1bca38077549f34ce76771a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 312c1e04bd748aada9d0b7ce084a6e46b2257ffad9ba8026e99e7fe09a4bb2e1
MD5 ec5d14515b03ce05f6ffa37145eb13d2
BLAKE2b-256 196e9648ff1bb7e860b12eca11791db67294125d044f0f20ebdc93b7f5470adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2d71a39c0e30e2c9947df612dbe5ec18d2fea6a8a588f100f7f324fa4a6a9d8
MD5 b1a184dfe4b4cf1e8d5ee322e5ec410b
BLAKE2b-256 411aa119835fd4c732735c995fa6797d6290a9de2c3563ae7fac1271a9be6d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47056d613d75bd26be0f7c1ed9c58783abb0978c563586d7e6a025bd7e406fba
MD5 d42c6d49440b353e925b356803968b80
BLAKE2b-256 b49c90fcd773885b3430dd280e396a233a1059dd44607755cdfa20edbe95e32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b876766db1af0ff262cdb333f9bf54fa849b0b79b422b02e41dac8b9926e1433
MD5 54dd6b4276ed57af94a86d7218b657f7
BLAKE2b-256 c9cf01186df324765cbb3ddd80342ee8fa45ff799de8e2aa4da3315b28eea79c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7916f2ac5bc6e3b9c54221b75463c09af76b972383669fd31ca9ef408faea8a
MD5 36f6cfdfa1067f9983319fb69a9549a3
BLAKE2b-256 d35adb17417c231da471bb4817a0cd1a77fb457eb9780f94e35e8d95f0350d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dfdadb9ab865c47b08e59b5c67feacf0c917aa3cead319c27955fc5b23c509f4
MD5 c211a63afc15740a2d38365bd90ca4f4
BLAKE2b-256 7b4935667117b9034189a756a5f7e6254b71a11c6c280bf161d9a14be620fe4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28ac9e5712718a7afbc4d9e2492eb20b5a4feda3d435da9e2fa6eaafbaba6200
MD5 f303695bffd10b179093af2aa312b728
BLAKE2b-256 a11a9ed064f94ac5a37eb3ea407fdb50c935f32d3b032c0c050f6f0addda9492

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 412109a0c23c6d7e97a8b88025a8d832c18a8c361dce6b7c2150d840ed560b26
MD5 e6f3cdff53f83eeed7402ac7cc92eba4
BLAKE2b-256 d1eac48c7071d5dc02e937725ea428cd14ea3130b700b7da644419525221e21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 624b03adfe511bc659a85d248c1ee46f302c3e6f900f630b557683f4c079643c
MD5 ae8ba076989922c3b81727eb6e329fc1
BLAKE2b-256 c6e4a380fd7f0343e99e9c0dcbb31b82ca4553aa15981de4b52961e74265f7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 460874bc387e9b8b7ffaa81e9db92599c0d25d3051d8dde954b5218ca6f86e45
MD5 2860d1ba5f345a8ea448631715883394
BLAKE2b-256 6cf85244de506fc83f4168eb63a4e2d6f62c352a5231f00686fdf48a7b1dd16a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72d882153fdbbfb4fdc5b54910af4db643c5f11ee9fe2f36751a8d2e0ee4bd95
MD5 60a3591dab44a6766454ab2d0ed0d9b3
BLAKE2b-256 6996a6a9308b5bdda9805b8b80bbd68879bb755932a29409abb7bd6a28fa3ff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08ae73bdcc0cb1d3e9f9dd2bbe8ca9e74a035185098a0e75ba6b6bf5915939e4
MD5 f914b08741891eec951307af5b33ebf9
BLAKE2b-256 35d5a1623b75fff09c27dbcebb356fb25413cb580f0e27b2a1d460b17c2e062d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5024879606c58ce2572de5444a0ca22fe3c8ad3927203498db60404253c4684
MD5 bc4a4269d4861a6784d16593e2995c8b
BLAKE2b-256 9539b8d3e4f14633ad666183475672478ab665178d77ebe3d38eb4eff510430b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 204a88cce4f411a2d4895bf6cbc91664068fd52025e6e9228e5c274dc4ccaf46
MD5 dc095f94fe4c5d2aa62102623eb9f204
BLAKE2b-256 65f67215dadff14b9ae3dd48f169eff8c3bc255898da02bd82af722de3276c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e72839252187bb5bcc280f1aed4529d079190bc0827faafcbc3263751256262f
MD5 3aee36f8d4c14bb237f408aacff57d8d
BLAKE2b-256 242b6e37f603b221d2c46356dabdb1f1ccb9a065bcfa8f94af4e65a26d3bebde

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f99864d11d9c96b9a88533a3ab16160e802e33a381b709a0fa4326ab45594c23
MD5 2f4ac5d8857adfff0d5a3238fd640655
BLAKE2b-256 63cf61cf71b65618d0f5140b94dcc2a937ceacee7f7ab46288d55da65d4b0787

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfbda3cd2dc011ea3169eb99d36b78d52b94b435dfe3e048f3decf2d7af70c4e
MD5 6381a007afc5180c8f952a543db17dde
BLAKE2b-256 e83b0ce08b9be93681f2f57ad9ed5858e43fd775a345420523da13677e77dcfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78c2d2900de9e04da77bfcc0ad2587b1266c1f57513f31a85b0d5b25bf8b9777
MD5 f8df3fe0fb8ee53723f41d97312bead3
BLAKE2b-256 f137b6b5fdbd9f006e3678b8b606cc95d1235f356c82b2bf79afba25a9f76351

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98e3c71133c1f89b6665107e89091704823e67e2613f6cf9cbe07043537a181c
MD5 0869a6770be013cbab76bb2b98b6b268
BLAKE2b-256 d41c2431fb782374694640629b488b8f65563698c790aa113d4c529758d4f2f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b86eb1eb854772a5328d530e88d9e5fe05639dc6f52d893c7a11b46b74ba219
MD5 79594c33641c601f4a62c91ef50bd953
BLAKE2b-256 55c999fe52cc2fcbe36cde4d4dd506bf3ddb983c9da55705eeee25a542f0913d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48717281b9945c8001220aeebd2a313427f66e4aa19439ddaefcbf8cc2719918
MD5 ed35c81d2c128c86c0bacbca3ed5ebde
BLAKE2b-256 2857384333c4013529a88580ef1ddd96c0c84afc563ea70ccc27aada8986d426

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce03bbcab154e872084ba7be921312fe9e8cc8e4739bdb15fbd349831e259dbb
MD5 0d9b29b860014df5d7a4f6ee3d38f557
BLAKE2b-256 8f4776c6b15d964072eef050a85703d460bbeb0c5220031aa734479f19c59a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b04115ef63883225ff443d1422f8fdbf54371b4e72282b5ef21208cba9febb9
MD5 6342b0a7908951549f89b1693948d1f4
BLAKE2b-256 0c9ca48d4a26ee052e138e47c322d1e272ede06afe0a7e0124b34ab2cc06a1e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07fe4c6a602b598353215cb59bbb1b67c99179a0b9b571d3f157770836e4d533
MD5 892501c4639ab88f4e1b32adacceaa15
BLAKE2b-256 12a0879ef350df32084e8b8c6a2ffec8faae41837945c9fadc98cf1cd743d22a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7885548e6e7a19b5ca84b1c43e583815041ccbc34cb11e2522ce4c2c7901a48a
MD5 03c5a4bebfc8075d9df647a1795d4351
BLAKE2b-256 387c534711a09a1d72b1899c211fd8cc851ed6e0ad74481293b664406a2f998e

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86b4ad5fe0750766b299a08c0ce30d3babb1f4b7ea58a5f7283be7bdc94ff16a
MD5 cf1de2869cc00dc287201ad6b9939933
BLAKE2b-256 5bd41e3d59d081d486f0d9411673bba617e521eb837d70b47ca2f867b8d4343c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20966d216ac6e221f5f71ec8275fe777fc215d337e9730cc9f5ca2c163af049d
MD5 65cc456edfd7f622782fb7d62a747e37
BLAKE2b-256 41a453208128692f485c67cba321508ddcdeb28a12bce5d26a81c408f35e6a14

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 392ac11d987f61115517d0455baf75176e098b85f2e8e85fa76d07316f13ec6c
MD5 779c60bbea4e9bbc4d4251406bdbf4ea
BLAKE2b-256 51bbc39e64791f4aa3fa3fb9c4586ae55c3bdcb9bdbf10413f616145cd0f44fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1f8f758a84e85c6687ac2c7418c814204889fb08f74faf7d7c1a4651d697e2a
MD5 f10e89e84da163ceb25ad35ccf75f93e
BLAKE2b-256 1d680bd92c90693b7af556b3be8ee86f5b7ae202eccb19a1d369186738ab2a32

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37e93762a54f9ce0c05a9568a05c09552ee51d20e6dc71c427aee5c418ee7e36
MD5 0045d51979b427c714d806615846022e
BLAKE2b-256 03ef285e608243982ffc8319218d482dade31d1cc8db1f87060ae2ab29a71d6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf84085b0c902ddde821dff480c27b3bfa22a47054913dad0f302697eb75e096
MD5 1e8b7160a1215c93c392dd79af139af3
BLAKE2b-256 f9c619e69bdc88b1829a09b4252ec8a2c9b0bb10dccf7e1031a2d9abc0f4d5ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de42ead45c89c28465aa838539b09f4f86a88956fafdc2daed9a8e085ecbfaa5
MD5 8ef3aca3cdd5f0069d807eee3577366e
BLAKE2b-256 055893e64f8b700823edfae0091b1ff315071078339bafe0c266f4061387c7c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37d9bfacb96715b818283af13ffd483969b1c821e82732790387001210179298
MD5 491f5c62e82fa4147457bd2676e4a712
BLAKE2b-256 ae4aeeb2a9ada374c8031de4d8df61e690aa3a07372f2be1892ee791ba799f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05c7b4413ef676413c425c0079d6bb32d60f79397fe9b39c0bc0ca5a07e5ff34
MD5 2c1ee5e30113e1510c455773880a9335
BLAKE2b-256 47cf6147b0075598f72fc927f15f7baee582df65756e38c8c779e098e06a56f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ae2cf6147f5f0ecac8c90f7a7cbc2f4418d9f08fdd28601b2ec7e18626221bc5
MD5 2f971eb68c63c6343d53c1148304bd3d
BLAKE2b-256 a5b36fe326704cbfb208bb657fb215db2c4239784f3743d1992c25f05d72da57

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b1f7b3336068d6bcac9c29ba21240bcc1c2b5084f30da54a407cee634e50679
MD5 23b86897b3be80a67c9422a0d9bb1054
BLAKE2b-256 e20c90d9c9e139781757a99a2790b3492e6e67ba85fe1623c789d166e6706e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 868ccc924e79d4e2e5224449b27a09e87156699f862d12857c0317c15d190749
MD5 c389a080ea501b53782b5a10262834ac
BLAKE2b-256 560dbf9c319b5b6302a54197a499c87d85dba3c8bdacdb7dfbad95fdaed6de82

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32bd350ebdb297b8c1a0db3813960f17037eac06c1b3b12e37b44af5caaf49b5
MD5 7f41b02a3511f3dec15a080df83298cf
BLAKE2b-256 035383ad7103b4b678219ea5c7d0f276089eed62f8c318d784f019a26e254799

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1034c79b9016d4cd4192cdacdf08b2315696f3eaa34a632063fc8be40d035fe6
MD5 3e30d5441418ebf195129eeb022fd7d0
BLAKE2b-256 5158bf2ef8ea226369a970f58b313cb2ce19b87c71998d63d2cd0d89c87933ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 005d4e80fa9d56a4457de57c13a583af417ac918e95cff579bf1a44d9be1a152
MD5 5220298c6e308904a00882f4864f6d02
BLAKE2b-256 17b884696f628d3a5b4d35214296fdd87b2d4058b3344d303a7f3d874f3dc288

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94daf22f73132f494a92b3eb87556505ef0df303f1ade01ae993bc7ff458f1db
MD5 e32a935f918ae4f44aecc4f62e2c8cfa
BLAKE2b-256 cc9e50080cc4518e1554a08d37ce3c07ffe764110a71b8990f8048cd51131dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e875125bb429f40ab539a4f75580a1d12151d7b2e656f7210b65976bb965c5e
MD5 d1e85fb3b6258dfe41b96075ff8169fa
BLAKE2b-256 3ba24667190c874ff4f24807375701aac844af8b4460b3445e13590e6b4bf8d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3bde87b33c87336831da06745e3058018943dac0d848441edab34ef8e66d650
MD5 63e17aa24dcb9b6b3b63f127492af00e
BLAKE2b-256 5aaed30fa067e02c38087b0f298350792cae317b7bf274c0513d921c90b72db1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cdc6ac33de0fe2d70c98d5edc664dc53c14667e96252f66b8530ca2a1763bc7d
MD5 0ba0b1135a432bd004e97a518cdf8f3c
BLAKE2b-256 62052c96ea3931d4b55a7c81bcd7d3e6d48e6ae78091ba61b87a1cad85a12ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15b296e21df133134cf16044a7e139d661da51c9e0bef6af81d4074c37fed7df
MD5 a986742335fb3b27c9790251db50a749
BLAKE2b-256 b03d28e5f66fa177b9114851f4432a21dc8cf019955f9f0d571a31d1cf2d418d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad5b60de1c7181e5dc156213245a6c8ed17955b595a10c3b49f00b61130d511b
MD5 2065bb138d2563e3a4a3085a8bd05fd0
BLAKE2b-256 d01950bbf7626fe15dba1f43a294f4ab960863bf39517b06345ce0f71acc9b4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 506913266a4e8f5f83285184cfd00d3be368ae79e87b1cf7b5a1806bc6952704
MD5 cd4a7d71be458f173ac8877f59d44d6e
BLAKE2b-256 513e4793f6caa335c714d617b05248df17270fbeffe7523fdf5322f4607c8aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44cdf6a1ef591c5b4341d1f0ac1f43cb15cc783d6a596d03fc6ade51a48a8a4d
MD5 5357fc27eefff3aef00bc725d6dc99c9
BLAKE2b-256 af024bf0bddeebd4e4a41672dd4d7c2391c5189323f910693e5fa7596622b0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc37bf08a3dc5d9c792a7daf2769bd6615d833847c47d103db729d17797ae86e
MD5 3fd36304036d58c78aa59b9c5c85f7fe
BLAKE2b-256 369b183c28377eb72bdbe5f98b624c9a423ea8b4670095068de963e7ef4d4630

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f45689e66832d768a9a207c0a0c1ad052d2f1da53bda17cef3b9a0079e01054
MD5 7d686f9c7b36fa1d3c7c06cfaf9801f9
BLAKE2b-256 334528b6f4c46d4cf3dcdb08eb6bd9f434b7250236edc82f9774d18f71fff257

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9603608eb7facade1e7f272ac8db305e62453dd493f4e15a01b4b13d72087f86
MD5 8650f4d7039fde86c3079c1548aa3d70
BLAKE2b-256 5b248c8a6ab09a61c7f00c6c48e5dbac4b3abda97f7fd43322140da25a2a7b9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f70229c4ecd24ddc42b14f974be0f2aa41593600d88e629fe57590099986ca33
MD5 e545cb0635e15caf9b223b825d9c9323
BLAKE2b-256 84cfeaa33a9ef0ed5a49c53306c03b3599d76a522c39fb194503ced66c64ff81

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 232794df3a1163549278b4dc11bb861fee3ce3064019419f2151ec42e8444d1c
MD5 98283be5ccb2e4b1968f78031e04b13b
BLAKE2b-256 e2179eba1dd9af054131879c9182f9d4dfb4ce66482599bc14962fe04bfa5875

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3162dc9a8da69b6f26170d3151fe21765ea769c9a95e1dd63b0a71eaaba2d26a
MD5 8fc8327ad85440d8d1af8629b9b69769
BLAKE2b-256 3c7fb876674d55fadcc024a2d09a853049ebc90c34da636ec7edf71c4433f92d

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca3608fdb3848a81dc4b4e63665c78d2d6563a1819debab94fcd9006a877c696
MD5 3198bbd98172416450ce2c614348253e
BLAKE2b-256 db8e3dc371f482961a40987c0f5908ef77731ee64eb6234339a18c7112d3815c

See more details on using hashes here.

Provenance

The following attestation bundles were made for vectorsearch_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on malteweber/vecto-rs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page