This release is a pre-release and may not be stable for production use.
VaneDB for Python
VaneDB is an embeddable vector database backed by Rust. Store vectors and search
for their nearest neighbors inside your Python process, without a database
server. Supply your own embeddings; VaneDB does not generate them. It stores only
(id, vector) pairs — no metadata or payload storage and no filtered
search — so keep your own id-to-document mapping alongside it.
The vanedb package is the shipping Python implementation. C++ bindings are
kept in the repository for reference and local testing, and are not published.
Installation
Requires Python 3.11 or newer.
python -m pip install vanedb==0.1.0rc1
The version is pinned because pip does not select a prerelease unless asked; drop the pin once 0.1.0 is out. Building from a checkout is described in the repository.
Python lists work without additional dependencies. NumPy is optional; its arrays can also be used for vector and batch inputs.
Quick start
Use FlatIndex for exact search, or ApproxIndex for approximate search.
Both return (id, distance) pairs, with the nearest results first.
from pathlib import Path
from tempfile import TemporaryDirectory
from vanedb import Metric, ApproxIndex, FlatIndex
ids = [101, 202]
vectors = [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]
query = [1.0, 0.0, 0.0]
# Exact cosine-distance search.
store = FlatIndex(3, Metric.COSINE)
store.add_batch(ids, vectors)
assert store.search(query, 1) == [(101, 0.0)]
# Approximate search; capacity is a reserve hint and the index can grow.
index = ApproxIndex(3, Metric.COSINE, capacity=100, seed=42)
index.add_batch(ids, vectors)
index.ef_search = 100
hits = index.search(query, 1)
assert hits == [(101, 0.0)]
# Save and reload the index without rebuilding it.
with TemporaryDirectory() as directory:
path = Path(directory) / "index.bin"
index.save(path)
restored = ApproxIndex.load(path)
assert restored.search(query, 1) == hits
Every path argument — ApproxIndex.save/load, DiskIndexBuilder.save and
DiskIndex.open — takes a str or any os.PathLike, so a pathlib.Path
needs no str() around it.
Supported metrics are Metric.L2 (squared Euclidean distance),
Metric.COSINE, and Metric.DOT (negative dot product).
For each metric, smaller distances rank first. Vectors must match the store or
index dimension and contain finite values; IDs must be unique unsigned 64-bit
integers.
Exceptions are chosen so a caller can branch on the type rather than parse the
message. A missing id raises KeyError; validation errors, including negative
or out-of-range integer sizes and seeds, raise ValueError; a corrupt file
raises ValueError and an absent one FileNotFoundError, so "load it, or build
it if absent" needs no message matching. Other I/O failures raise OSError.
Arguments of the wrong type can raise TypeError.
ApproxIndex.search accepts a keyword-only ef_search that applies to that
query alone, leaving the shared ef_search property untouched — searches
release the GIL, so raising recall by assigning to the property is visible to
concurrent threads. m, ef_construction and seed are readable on any ApproxIndex,
including one from ApproxIndex.load, whose graph the caller did not build.
get and get_vector are the same operation on every index type, so swapping
FlatIndex for ApproxIndex does not mean renaming call sites.
ApproxIndex writes shared VNDB v2 graph files. Both engines preserve their
vectors, links, IDs and deleted slots; further insertions may differ across
engines. Legacy Rust graphs remain readable: load and save to a new path to
migrate. Older readers cannot open VNDB v2. Keep originals and source vectors
while verifying migration. During 0.x, APIs and persistence formats may change in a minor release.
Existing format identifiers will not be reinterpreted; new encodings require
new identifiers and readers for existing files are retained. Older readers
need not accept future formats. Future insertions need not reproduce identical topology. DiskIndex
continues to use shared VNDB v1 files. Disk construction buffers vectors in
memory before saving, while the opened index uses a read-only memory mapping.
DiskIndexBuilder is the only way to create a file DiskIndex.open accepts:
from vanedb import DiskIndex, DiskIndexBuilder, Metric
builder = DiskIndexBuilder(3, Metric.L2)
builder.add(1, [1.0, 0.0, 0.0])
builder.add(2, [0.0, 1.0, 0.0])
builder.save("corpus.vndb")
index = DiskIndex.open("corpus.vndb")
print(len(index)) # 2
print(index.search([0.9, 0.1, 0.0], 1)) # [(1, ...)]
DiskIndex has no constructor of its own — DiskIndex(...) raises TypeError.
For DiskIndex.open(path), keep the underlying file immutable from before the
call until the last reference to the index is released. Prevent every process
from writing or truncating that file, including through other paths or open
handles. A read-only mapping does not prevent those changes; they can corrupt
results or crash Python. To update the data, write a separate file and atomically
replace the path where supported. Existing indexes keep the original mapping;
open a new index to read the replacement.
The C++ Python package has different constructor keywords and returns separate id and distance arrays. Changing engines requires adapting those calls and checking feature availability, in addition to changing the import.
Project
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 vanedb-0.1.0rc1.tar.gz.
File metadata
- Download URL: vanedb-0.1.0rc1.tar.gz
- Upload date:
- Size: 165.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e43614dbd1cafee197b1fd9e18078b3e2d9b3841e58c9564da35835477e756b6
|
|
| MD5 |
10aa946d24fee37437bd06b93de3998b
|
|
| BLAKE2b-256 |
ab8af6decad41b6f01b2e0c808c24045663441ab4355e79cd814d98a7ca40f27
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1.tar.gz:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1.tar.gz -
Subject digest:
e43614dbd1cafee197b1fd9e18078b3e2d9b3841e58c9564da35835477e756b6 - Sigstore transparency entry: 2773126529
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 267.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
295f27af4c03ac5192746196791adcbaeac24fbff70797af31265c2e8bc3e8e2
|
|
| MD5 |
ec7a2dcaab71c58c87d9aabe97a2499c
|
|
| BLAKE2b-256 |
e67857bcbe6bff06a2fc69a0493dc6d3d770842e8e874e362c8f7dd39b7736cb
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp314-cp314-win_amd64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp314-cp314-win_amd64.whl -
Subject digest:
295f27af4c03ac5192746196791adcbaeac24fbff70797af31265c2e8bc3e8e2 - Sigstore transparency entry: 2773126560
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 620.0 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a9151236feebaf76d0d025b59f7c13f1c8846534cbd3390e41285f78d25fa75
|
|
| MD5 |
c2fad73d5905cb6128f2eb6da8d0f559
|
|
| BLAKE2b-256 |
8db082b845fb94993b2f8ec2c639d2ed5e93d42f3e7b82f33d1d6f3d703f408e
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
9a9151236feebaf76d0d025b59f7c13f1c8846534cbd3390e41285f78d25fa75 - Sigstore transparency entry: 2773126631
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 584.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d941079ffd7cf46ca87e585a90e5d8706a72c72fcba6d863420b4781220fb0f
|
|
| MD5 |
4ba349e546d342bd7aab05f732684074
|
|
| BLAKE2b-256 |
98826062099dd9a30d44ea56e43096ef6860cd5ca2419df6d6ae45cf5b3a99d8
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
6d941079ffd7cf46ca87e585a90e5d8706a72c72fcba6d863420b4781220fb0f - Sigstore transparency entry: 2773127110
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 413.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4df7cae14771f1ea9b9fd2f78089cd4e75398df62ff4d694aa148c070dbef05
|
|
| MD5 |
9b621a7c8d01d4221e91459c0681c906
|
|
| BLAKE2b-256 |
9a2ee4ed62b8ba2c1885a9746a74c0669e741f81cc4c50207af48e859976045a
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
a4df7cae14771f1ea9b9fd2f78089cd4e75398df62ff4d694aa148c070dbef05 - Sigstore transparency entry: 2773126712
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 405.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7033da57e272c237d5bad7b440e898dcdf1e226da21fed2e9e922b288945806e
|
|
| MD5 |
1620f2cae7c6cfae7596db185d9ee46e
|
|
| BLAKE2b-256 |
9cc92e38d78773f008f321e3a91137bc106fb11e364e3c403605845b21a431e3
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
7033da57e272c237d5bad7b440e898dcdf1e226da21fed2e9e922b288945806e - Sigstore transparency entry: 2773126818
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 366.6 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b89193681521a4d2c1d270ba47d96616e39912e8cb30aa2ca3aafc9d3d9dfc9b
|
|
| MD5 |
f20d6fc23c829f2d83d86ec95e3bac99
|
|
| BLAKE2b-256 |
4536988e4b62fbe3b5cf6942147ea0de74203c751b4137132d77c2c737f771ce
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
b89193681521a4d2c1d270ba47d96616e39912e8cb30aa2ca3aafc9d3d9dfc9b - Sigstore transparency entry: 2773127142
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 375.5 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5e55fde23822c28dbf6fb6654a0bcae839b41052753036b01c6241e3a480e6e
|
|
| MD5 |
9c98cfe47d3feefa4c39da09693ad51f
|
|
| BLAKE2b-256 |
935b594ed0e84f81cafbf68c51f4e98573b10a985bafec7ac7e4e7dfa612eaa4
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
b5e55fde23822c28dbf6fb6654a0bcae839b41052753036b01c6241e3a480e6e - Sigstore transparency entry: 2773126654
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 266.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df714ac27d4b8b62be4fd0e7b715d90e20d5e065fa38a0fcb78cec4ced86b677
|
|
| MD5 |
3803975628c6addfc50a94c475a5656d
|
|
| BLAKE2b-256 |
8ae5d148104164b70c063c6fbb2fcd172b3fae0596f648beea94bd9b39a8507f
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp313-cp313-win_amd64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp313-cp313-win_amd64.whl -
Subject digest:
df714ac27d4b8b62be4fd0e7b715d90e20d5e065fa38a0fcb78cec4ced86b677 - Sigstore transparency entry: 2773127081
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 619.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b07af8bd4287131c6174b7d6a65ef12475039e037b08657f524c50b98486402a
|
|
| MD5 |
cddf205b37614c83359a856e9a841ee8
|
|
| BLAKE2b-256 |
96ed30b7bba8df96859c1d9e465efdc9eecd6a4dd52eae444d74a23a0ec58c49
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
b07af8bd4287131c6174b7d6a65ef12475039e037b08657f524c50b98486402a - Sigstore transparency entry: 2773127256
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 583.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0e3ffd0057832e13c14ccba37738cc9464ee89cdb29cf883413ad668b2215a2
|
|
| MD5 |
3219fe419f98d6d0516a6efb8e541c13
|
|
| BLAKE2b-256 |
b1b7f090540eda45d8bb8be41551cade4916626984dbd8e3eaead2bd31ca7e5d
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
b0e3ffd0057832e13c14ccba37738cc9464ee89cdb29cf883413ad668b2215a2 - Sigstore transparency entry: 2773127515
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 413.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c83e404a772d16c0b72b953e163d9a029fe4cc6ac90842da2730c7e4dbfcbeb7
|
|
| MD5 |
0abfd951142ecf7bf8a05ab2091b386b
|
|
| BLAKE2b-256 |
c111f507ab0b702b8cc536b0867737bdb7062da2b17d2929e219228439ab912c
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
c83e404a772d16c0b72b953e163d9a029fe4cc6ac90842da2730c7e4dbfcbeb7 - Sigstore transparency entry: 2773127485
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 404.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17eb391d1f4f16f28f99dc84c2def5899e08dadfd71a95a1a12653270005c33c
|
|
| MD5 |
1384f6dc24de83986ba4d63fdb1f8b4e
|
|
| BLAKE2b-256 |
b3e05165f9e72d32b6ebbd6a4cae221d2e17029129c1f0c11107abf88cf9c0ad
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
17eb391d1f4f16f28f99dc84c2def5899e08dadfd71a95a1a12653270005c33c - Sigstore transparency entry: 2773127303
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 365.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b374f1ac7635c7286d88a42dedc3b879392386ce4e4bb59044e0f14f6b8772ff
|
|
| MD5 |
229ffaacfefe0e79f70da2c2dcb0bf56
|
|
| BLAKE2b-256 |
1d94b06004715dae420d0d0b588714ec3fb7c2a5c4367417a2b1215830d5d4a9
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
b374f1ac7635c7286d88a42dedc3b879392386ce4e4bb59044e0f14f6b8772ff - Sigstore transparency entry: 2773126977
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 374.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
254cbe06382a7e62d7cd4bee329f9197d6108281ff702304b7306d4d5492ad02
|
|
| MD5 |
cc43bf685c4ed0075e15a009347f33a3
|
|
| BLAKE2b-256 |
2b33c68b30972db6dc3ebf0fc5dda809c135f008cb96d1beba10c930de6a2f74
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
254cbe06382a7e62d7cd4bee329f9197d6108281ff702304b7306d4d5492ad02 - Sigstore transparency entry: 2773127043
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 267.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1bc726828d557cecbb84200179f444a1f5f2b19cec6b0089ed0cc340a382152
|
|
| MD5 |
8dde69d23ca52c900dd6156af1d71b6d
|
|
| BLAKE2b-256 |
d2a04bc09260044fa3819d937ac355f77a8e80d586d7c1c69cce9df2df0f59f6
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp312-cp312-win_amd64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp312-cp312-win_amd64.whl -
Subject digest:
b1bc726828d557cecbb84200179f444a1f5f2b19cec6b0089ed0cc340a382152 - Sigstore transparency entry: 2773126594
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 619.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fe65926a6358b9e2fa0f6d0c0ec1e0808c3dec5d8272aec5d8a12ea8e9f83a2
|
|
| MD5 |
5fb9449534e7b921f0f6b36c546dfcc7
|
|
| BLAKE2b-256 |
1609080e56a89414331eb3c384449703cddf0878d06c2d8e6cc9a0a83d53976d
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
4fe65926a6358b9e2fa0f6d0c0ec1e0808c3dec5d8272aec5d8a12ea8e9f83a2 - Sigstore transparency entry: 2773126758
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 583.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96760e46e52b3253147f3aa5a762d92e7435f3392b500019e8beb991080b9a78
|
|
| MD5 |
12dd5c85dc0062f3641b54afae81514d
|
|
| BLAKE2b-256 |
ac4c55255082e00bf211315792f6650295e25a940dd8e75f2819cf3053d0efc9
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
96760e46e52b3253147f3aa5a762d92e7435f3392b500019e8beb991080b9a78 - Sigstore transparency entry: 2773127332
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 413.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec4e476583e810e0be6da747a3b5cf46bfe3864b26462b2704fb6748c63bbdab
|
|
| MD5 |
14b93af08837068560c337487b17eb71
|
|
| BLAKE2b-256 |
9d4acbd978723295cd500d2342a72ec53de088e327c9ab1ac3245a327aa5ecd8
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ec4e476583e810e0be6da747a3b5cf46bfe3864b26462b2704fb6748c63bbdab - Sigstore transparency entry: 2773127009
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 404.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c56e06bd9fdf8112c475923ddc9747cdebdf75b2076c1074c34cb5a59e009b51
|
|
| MD5 |
651709a83d7028c15672f63264f40bf5
|
|
| BLAKE2b-256 |
ce2b0c92684a742033454e7ff3bcb546b0857f010409a51b6471b96e3bcf7b9b
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c56e06bd9fdf8112c475923ddc9747cdebdf75b2076c1074c34cb5a59e009b51 - Sigstore transparency entry: 2773127362
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 365.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34d044ad1ea9727413e5e0af144bcf1b7649a5b567627d22fd5be66ea47a7b44
|
|
| MD5 |
e00b7558af31ab7933df1f988f26478d
|
|
| BLAKE2b-256 |
3fee154c2e1781f4ec3c2630b6b7d322c3097dcbbc380de68f97ea252478fd14
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
34d044ad1ea9727413e5e0af144bcf1b7649a5b567627d22fd5be66ea47a7b44 - Sigstore transparency entry: 2773126678
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 374.5 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ffede584ffc989379cff85d6a216084a768e7170b479a65e13def624e13625c
|
|
| MD5 |
23605ea36ea8b5fdbd27bf127a7cc2f6
|
|
| BLAKE2b-256 |
22ca3169a47702bbbfe050285bb1ba0fac0446b87f2c612c87e484e791024c87
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
1ffede584ffc989379cff85d6a216084a768e7170b479a65e13def624e13625c - Sigstore transparency entry: 2773127275
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 269.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d32abe2e2feb028a93404aff902effd3d699d895e899f93473924f6f5b14a66c
|
|
| MD5 |
ecf2c6cf88b12655e4516aafafdc7661
|
|
| BLAKE2b-256 |
5fbaf0342ad197d84b858212fece359cec10189df4edfcf06ca54cd18c847860
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp311-cp311-win_amd64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp311-cp311-win_amd64.whl -
Subject digest:
d32abe2e2feb028a93404aff902effd3d699d895e899f93473924f6f5b14a66c - Sigstore transparency entry: 2773126863
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 622.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
378edbc283639e45e10f2c14e62132eef7c5ea3caa9a6c43761b070813348ca4
|
|
| MD5 |
af5e38dcbb0b8067a57db3c28f6a4faa
|
|
| BLAKE2b-256 |
64a73a8f1969fc2b6ea014de06b6e5b198b0015a4d235e3b1eef2cae3167a8eb
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
378edbc283639e45e10f2c14e62132eef7c5ea3caa9a6c43761b070813348ca4 - Sigstore transparency entry: 2773126916
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 588.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e99078270dc46bbfc6eabe802d1a0b9b01f8470d52438650865b8836de894e09
|
|
| MD5 |
b0b1fb6357928c3ee43a040460d92e31
|
|
| BLAKE2b-256 |
bed8b393df1fc5d1a1014afa96ec9a263e39018d5696afc7dd239834daa9b535
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
e99078270dc46bbfc6eabe802d1a0b9b01f8470d52438650865b8836de894e09 - Sigstore transparency entry: 2773127183
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 416.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e8e58dbb72aca1420ea55a83ea5abd89425f40b0517b366b07ba2394e8f362
|
|
| MD5 |
10d5cdbab0e17ba27e7cdd898d1626db
|
|
| BLAKE2b-256 |
cec2fc1093c5ac3342eb7d8d4c7c2fc7215482428ab2ed7f36ea34b7dbeff7d7
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b4e8e58dbb72aca1420ea55a83ea5abd89425f40b0517b366b07ba2394e8f362 - Sigstore transparency entry: 2773127205
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 409.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c1f9c179c8ce0c2373d28bb69509fd465736e5a8a5179c57661aec86f926998
|
|
| MD5 |
ae9ce7e30a24f55bd3886b5dc48a2b91
|
|
| BLAKE2b-256 |
7c75d682b574f131b8e9ee0c7d1dd0bb819041b0485b7e399a00d64ed8324e83
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
0c1f9c179c8ce0c2373d28bb69509fd465736e5a8a5179c57661aec86f926998 - Sigstore transparency entry: 2773127457
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 370.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a99009fe9b0202367b07b98be138667180cce405aeb9c644632220c4286a7ebd
|
|
| MD5 |
71a5807cccf467b1bf7f988cc70c9c7b
|
|
| BLAKE2b-256 |
b1c1f22066b2a005628d0bc0c19ccbb41c34f22159669971b8682dffe207126c
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
a99009fe9b0202367b07b98be138667180cce405aeb9c644632220c4286a7ebd - Sigstore transparency entry: 2773127414
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type:
File details
Details for the file vanedb-0.1.0rc1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: vanedb-0.1.0rc1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 373.7 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d9e5eab8abe9d9c30cf81e2b4fbd1a89a22dc398d366854822a2d3e55c0bb31
|
|
| MD5 |
ad61857623c083631ac359882bff95da
|
|
| BLAKE2b-256 |
7ed01d7d3fa66bb6bc3ea2676ce517d23c4b8240f7bfe810375a0b1aa479b810
|
Provenance
The following attestation bundles were made for vanedb-0.1.0rc1-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish-rust.yml on vanedb/vanedb
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vanedb-0.1.0rc1-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
8d9e5eab8abe9d9c30cf81e2b4fbd1a89a22dc398d366854822a2d3e55c0bb31 - Sigstore transparency entry: 2773127236
- Sigstore integration time:
-
Permalink:
vanedb/vanedb@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Branch / Tag:
refs/tags/vanedb-v0.1.0-rc.1 - Owner: https://github.com/vanedb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-rust.yml@4969ce9b6e1521ea5dda646833eed8e6698fa19e -
Trigger Event:
push
-
Statement type: