Skip to main content

Python bindings for jaq, a jq-like JSON processor written in Rust

Project description

jaq-rs

Python bindings for jaq, a jq-like JSON processor written in Rust.

Usage

import jaq

f = jaq.compile(".foo[] | . + 1")

f.run({"foo": [1, 2]})             # [2, 3]  — list of ALL outputs
f.run('{"foo": [1]}', text=True)   # [2]     — raw JSON text input
f.run("1 2 3", text=True)          # [1, 2, 3] — multiple JSON documents
  • jaq.compile(code) compiles a jq filter program and returns a reusable Filter. Invalid programs raise jaq.CompileError with a jq-style error report.
  • Filter.run(input, *, text=False) runs the filter on one input and returns a list of all outputs (a jq filter can produce zero, one, or many values).
    • By default input is a Python value (None, bool, int, float, str, bytes, list, tuple, dict).
    • With text=True, input must be a JSON string or bytes; multiple whitespace-separated JSON documents are each fed to the filter, and their outputs are concatenated (like the jq CLI over a stream).

Variables

Declare variable names at compile time and provide their values per run:

f = jaq.compile(".[] | select(.type == $context)", vars=["context"])
f.run(items, vars={"context": "order"})

Values can be any convertible Python value (like the jq CLI's --argjson). A missing or undeclared variable raises ValueError.

Exceptions

Exception
└── jaq.JaqError
    ├── jaq.CompileError    — invalid filter program
    ├── jaq.ParseError      — text=True input is not valid JSON
    └── jaq.ExecutionError  — runtime error (error("..."), bad index, ...)

Unconvertible Python inputs raise the builtin TypeError.

Value conversion

Python jaq notes
None / bool / int / float / str null / bool / number / string ints of any size are lossless
bytes byte string jaq is a JSON superset
list / tuple array tuples come back as lists
dict object non-string keys are allowed and preserved

Decimal literals from JSON text (e.g. 0.1) are returned as float. Strings with invalid UTF-8 are decoded lossily.

Building

Requires Rust (cargo) and Python ≥ 3.10.

python3 -m venv .venv
.venv/bin/pip install maturin pytest
.venv/bin/maturin develop        # build + install into the venv
.venv/bin/python -m pytest tests/

Free-threading

The extension declares free-threaded support (gil_used = false): on a free-threaded CPython build (e.g. 3.14t) the GIL stays disabled, and a Filter (which is immutable) can be shared across threads to run filters truly in parallel. As with any Python code, don't mutate an input object from another thread while run() is converting it.

Limitations

  • On GIL-enabled builds, the GIL is held while a filter runs (jaq values are not thread-safe to move), so a long-running filter blocks other Python threads. compile() releases the GIL.
  • No support yet for jq command-line features such as --slurp or loading filter files.

Project details


Download files

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

Source Distribution

jaq_rs-0.1.0.tar.gz (82.4 kB view details)

Uploaded Source

Built Distributions

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

jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

jaq_rs-0.1.0-cp314-cp314t-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14tWindows ARM64

jaq_rs-0.1.0-cp314-cp314t-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

jaq_rs-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

jaq_rs-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

jaq_rs-0.1.0-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

jaq_rs-0.1.0-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

jaq_rs-0.1.0-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

jaq_rs-0.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (1.0 MB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

jaq_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

jaq_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

jaq_rs-0.1.0-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

jaq_rs-0.1.0-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

jaq_rs-0.1.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

jaq_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jaq_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

jaq_rs-0.1.0-cp312-cp312-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

jaq_rs-0.1.0-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

jaq_rs-0.1.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

jaq_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jaq_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

jaq_rs-0.1.0-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

jaq_rs-0.1.0-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

jaq_rs-0.1.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

jaq_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jaq_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

jaq_rs-0.1.0-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

jaq_rs-0.1.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

jaq_rs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jaq_rs-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: jaq_rs-0.1.0.tar.gz
  • Upload date:
  • Size: 82.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a589a8f02d4feca5832f7a7b3775862eda35dc67fc7cd137eaa49aeed3c5ade2
MD5 ab902694add8a0d83f5a9fd288857a91
BLAKE2b-256 72652dfbbf97bcd26525f092a77657bf8de37bc558f7df3b8c5e02c57cc3cfca

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c49fc40e7f0f75a2b8e44183e5e5801ef804fc80e8e878bbcd1937fcfa5ad9c2
MD5 ae588e811ba9f3f382e2f23eed20ea35
BLAKE2b-256 48b86c5d37895e56602a401a6b250b51f8a4569c04fd3e3b3a1477ef1160f466

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5d4bc700cc038cedf8c7f8b3bf463b8d163cc4d6ba45eaebdd4821e6eeed5c48
MD5 798bb12ac4c34c91732895d6126c3c4d
BLAKE2b-256 192450a7ccfef63ec156315c8aa86dae35863408a6dc738c52552fdf1e785254

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4469905b51f2d3d5364fdc4a42cd10a12abf1458f0d758288760f8fc0281eaef
MD5 0eccbd1b48cbc3c6674a869e0939c532
BLAKE2b-256 ba829a0fddeec9caa15b421003ad32e938f37a061bc5b1d7a931eaa7e41b53fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90d1615a42ef9ff7c8945a6e8e9cbc127df14187ba245be6f8d064da2493f182
MD5 fc10b15be053b1b30224f923a4833a7b
BLAKE2b-256 4ab7f4a270153be066086932b13cad68dae8dce28f951723be3f320a806eef8f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c7d76f174841de6f05de1b9d93d6e10c32b36a6584c574f26a729602b2966aa
MD5 c1ffc24172803b47955fbd25b61acb5d
BLAKE2b-256 e0a15806e149f2ac8a8859c58723fb63fcde193793acbf21992e890ec1d6c550

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 491b4bf6efbdaab9e6231de250392d40a2f00491ec367bd6c8c1e86a938a298e
MD5 5ecfa532132edf1c243a110949c187d4
BLAKE2b-256 c5376bae530105590c7424cc56c050b1bf9f9f220e7eda8b279c3ce1f8358448

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d474171ea073d58175197e3b79b3d1f48bc1a44a8fd1331b0ce9c6405c60d445
MD5 b51518ec60310784aee66bad47cced80
BLAKE2b-256 669c130f07a9e1a682e53da494e11096cc8cdc0591cf300e7ed068e5bbf44132

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e1e5b9f4f3823e69b6e0ce98f09736bc5eddb7843840d7b7d9e216d826f39c0
MD5 a05b9aec9c94e423cf48ef6668b19e9b
BLAKE2b-256 aeb14c38bf258e4900e6ced2a139f95b9014be89d42fb12e32bb147a827ab8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9dc96c917fe206667710f0e327126418a2a23bb931c547670076013388d87a18
MD5 2358d0d6a3d921e493b0b3520981c415
BLAKE2b-256 3744875a2e1a69e2190f6b2c44f2930a222698d80eb1b0b27d56e00ea848c111

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314t-win_arm64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7e690bd4409d8c2a7003d732d51e3fee03afb6b536c16642fcd337c9fe349267
MD5 cacba3312131ef24b774780fd68357b2
BLAKE2b-256 9eda2aa009d7761f7461c5fe553555d9d2d32218e466a4bf1f23b5f29518c812

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8ff4abf7879c121cc1882716c91d19c870998854b551a05a29c1b1011a294d3
MD5 a8a82343799cd818a0476111c16ff066
BLAKE2b-256 62d3e0233b3679ba40ff965efe4870a926ca25af1e1d3c3e6805df802ffc0871

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2271fd5da3c3d19530734cbffa57d87d0b0129589a14deb69502d5bf2a10302e
MD5 30c90e4ac45b5b9c3ec83e9ec1e45e54
BLAKE2b-256 a5646ac6218c312c881415e5b17df9d11932e59a0f318cb761a2a59cfdd32a81

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 73c59928def018fc302a097bbc41f6595ddfed646209bb93c7138fb4b0623945
MD5 15256c09874063245b2c7643bb1d8dcf
BLAKE2b-256 150826f5cfad60c524f32135206f59002f25e10aa735646a68178d3194ce8d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5a7e3e91bee2923ca1e55bdefffa8eae0f3effdfa81be84edbd937c0a8c89fa
MD5 92fcf69c1d3fc337675d9c3773c724f2
BLAKE2b-256 7f919bb3dc8e0cca7f331de72fc898b7fbc91009cd382d20bea3ac1037c824d1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02510cca1d1c071187081567420d60ac5244e8f2cc20c3be8f6ccc8b220c4cc2
MD5 01dc0dc2aec44354a8f07f0a7fbdd524
BLAKE2b-256 7e5e2042534297bb3e13c6e3699561d09db9fe60cb5a0bc6293eb3ef02afdad6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59eec1a5e337adf2a7b437de23c80a7f36948f22d86cba30fb06b87aad7dae04
MD5 e0591d3d72ea84b515a789ad7852cb65
BLAKE2b-256 084d504f6730aa08af1386631cf4a6f66e5e0489ddaf2ed042b35387be589617

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b12f63fb7376b203ee0c2ecf178f1db88439107ceab7aec0f86af7388ea6b7eb
MD5 7426f8448c7cdde44df2e3241982043e
BLAKE2b-256 4c2efde6eb5be399c0b4205f43126187d3d5d1f3c9726340e174688558611716

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a93626c2191f88d15e09a9c907f55403d49f3264fd20531fc8ece213fd0a5dbf
MD5 ebbf317d332314154900b8860d28e1df
BLAKE2b-256 ae45125a031a479f5146a15a758a11da1aba9f39ec22c639dbfcc36d799b6b1a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 688f4f279f912ab4caf2953de36698f560b6642acbfd6687e4d41a6c0724657a
MD5 e29646b6ee86a3c845b56298d5ec48ec
BLAKE2b-256 47ef77d02300dd0029275d9f09469a84dc5ce13da62bca4a2281179f2bd7dc3a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3a78f8565e94104c261013cf64fcf33e9651cdd8075e2db037abe9f30b0fd55
MD5 a5e61fe661b60561c6ae50d4d35f562f
BLAKE2b-256 6f9dde88d5b888c0c7c6a69e7e4a521a581c40e6bc0472aef30af0220f284d18

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 191a2ecc9bfae7a3a54644e519b73f88add616c44f4c5f2db1721641ba55b46a
MD5 93fae7944983233301cb51db2ecc4b71
BLAKE2b-256 8e0be84c1d7f2608808ee3cfa9a21c4d231037bbfa0a7b47a6b2a9339c0b3a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d468d4e4e29b644f8acb826590f7bbc1bb2942ca0ad6433252459d0413bb1c6e
MD5 83a533326b20276ce9da94ac71cdad1d
BLAKE2b-256 6fce97ae33594ad2321d1e5fc0bc570b7fb9c22e399e426eaa6be152fcde09aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314-win_arm64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9358f31093a0dc9e6e53630050b25e2eddd7844bf3d58675858462874c66e0f2
MD5 a3024dc3d985c5dd6ac916f2a24fe8d4
BLAKE2b-256 40edfd9c7a9d2e14bc79bba5b4572c6645539d0007ab40cfde4e8f7529833a59

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 70f3c1d1e4acf406ff5a8533950a186eb0e5a4c95de5553e13c5a2996b4c0c43
MD5 a697032ba901a2075a31afcc5086cc8d
BLAKE2b-256 eef3dd3f4321e46a59441736eab08939800faf48d19070842375ae2a2ab30f1a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 9a0ca529d821191f979390f138ebe29a2cbbc150aa62f0587a0676cf8c46e0f9
MD5 6b4873b10bb191567a7d9e217d719a6e
BLAKE2b-256 73b614e0a2fbd5c320565f529de52a7988efe84ca1c218b447f360b775f87885

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7fecf5ceeccbee0cf77a0c3c52c08db0e2676dbff82d328f772754869552e5ca
MD5 a1f4e4cb39c6447ddcf3f1fd2b4ac684
BLAKE2b-256 4b662eb1a9f4acd5a59f81526888b21201ac1f58e77bb5128f634a4bf3339e87

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e821b3080438c9e4ae3c66da0e178c9ff5b8048b26b5b10ef69c75a9170c15df
MD5 a05956e6f8f5a822977fbfcdd66afe7e
BLAKE2b-256 2afca2d6ac143cf596384a4a3c0221b18867ce1cf5b6ebb64a0680a736b6af66

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0376620896193c9566a28f050515dcfed786e571a12a09dfec2f1cbfd7648ae2
MD5 e76790775808bde71922da773ea28657
BLAKE2b-256 9177ed2cec790c598e05732c93bbc48381d82a34efeee68b7e62ee1d35d62cfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9debe16defeb2705e5b26993ac10792cfb07a5ffd4f93f1d4c4f74cc62698c90
MD5 5c1af9451c2dea295f797f1f5192f0a4
BLAKE2b-256 04e4b0cf3890c9700de03c8f7720ae7fb6caf38b3a2add32e328ba58b63fc0da

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05015f369fbc75b3d9bf40d2c5ab180fc8e4113c0a5710122608333deba63c06
MD5 1c26474e43cb4e846c7ddb4b3b7faa9f
BLAKE2b-256 dea3c6e2e72235e512532cbe5d5bb21b397b6ab655cc1af388de868f3df6b834

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5185730e75e5f2606c86702ebaef0875e8d9497fbc0a89f55f2f7b279657a22f
MD5 751bf750f7e3abdac56e7e842da99877
BLAKE2b-256 d196d44cd83dc8962f76ea2c8993ad89611d95ea53d91218a5b6add03773f576

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c358ab0cc64c26a365b373a9be23d0036ec6b609c526205d2dd8415ba8ce92a
MD5 c3c4feb83c009c5858b17bb349599b9d
BLAKE2b-256 38705c97666bcc031922e086475e976b0b3ce73d1b2591025011d3d0acf80cf4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7cbbb0aed7b053d063bf47417d2d573c84988d2580125448de6c874cbdf714b0
MD5 5160d098bd58c5ed0e7e05c9ef9f4591
BLAKE2b-256 301d180495b541ed783bc114f26b81c1dff466001f4015a73a70d8adcf7b4d62

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8b49f515befe2fd333f3e4c7359904d30973f6930312379e9d47cfd8851f386
MD5 cd5a2201139948c3f569167a178134b9
BLAKE2b-256 5d859408ecdd4edc678955a34ea7d037626a07bbe766f1eb3d8c3cbede7f0460

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95b1c70592f8d3e52972e56fec56329cbe833700a7625886ec13879e1c00a088
MD5 2f20b83ab72af5abb38ffd9b5814311e
BLAKE2b-256 fa6951b592b4db48b900d909968df67860cb2155bb583217a4a55aa08e928655

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e44d8d9456bfa1e31ad94faf2fbaed9d57cb99745104c2ed57fc9edc5bce2aee
MD5 6509ebd778fbadb3cf7ff85e63a4d55f
BLAKE2b-256 146fa4c60ebaeac58ebfc979d92c0d9a214f127158208bb55e216a4952b66bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9cc4e2d321a33897266fff55eef9e817a2106d9db266909ae08fd6178e9497ad
MD5 8469305a70302bc09fa3a9456be9b445
BLAKE2b-256 16cd1e78945c4adc9e5c9228d5f0a0ca410b4e50e525212b3417a82e96b8ed89

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp313-cp313-win_arm64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0a9a013ec89b146f4cd7d4fc50e54c7c4395d7455d98cc93865935513759f29d
MD5 94627bf4b2bc204b2c68bb9283607d4a
BLAKE2b-256 da0267e77c0d4b8893939a7b64a6e8fb34a96060ed3d6482b7c3367d89ead5e5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 87b17a6f322d6c0133db613a36594ddbfd96b11d5c0f75d05365b66bf51238be
MD5 79c0757b5d2036860c1714ee80a83846
BLAKE2b-256 5045ce0c54ae2a2e446d08d31a0cbd6adcbe1636da507a1ff9cdb915d7a079c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp313-cp313-win32.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 03007a705b7d1c4f2678cf2a4c851a2bd35676a5e763694ba8141b79f50edcc4
MD5 2d6225a6acb484fa1c3c27073a79101b
BLAKE2b-256 7ad349e5687773b20c62e3ec31d24529f884b4bfbb16352a7aa99ac16f275192

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 19b26884ba4425f5dc3199ee3e7d2454c2eb77939376c7885bd8158bf4dd49fc
MD5 13d58ffb6f6a901ab6e9b7f062e8df20
BLAKE2b-256 24e0f90cf849f88f4e6214b558897f0e00d77a35bbe7072629a15bceff363f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2957e8c3d575b2f0719a7a57dcd88352a752e30ab18e28ba794eef32190c5329
MD5 9678276503f716b5f6485edd11a01eb8
BLAKE2b-256 b5d37819311de4e59a14542f1a3ece69494ec3e2249cac51fc1ab929bb7b85e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 170fb620a21886fe80906f5f3f0fe4e5da8838e2078a29bf97e81d8b07f2516c
MD5 00eac95c16518c377b074da0e456f9ff
BLAKE2b-256 c89de670832ae655c585426c49a624a50adca72ea85350cfd617fc5ba095a41d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21636865b361640efd4a54ffea45a81de0452025bf0598690883af65e06205d6
MD5 a50349085c5605ec4e62ae1a77f66faf
BLAKE2b-256 73cb982f1456528a5a5b7c464c225051b8a0acc4d9f0024b094c5134eb95a80e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2222d867bdcca46bb87867b8f7d5a01c7d72a99ea7348f8c470db9b6dc52c152
MD5 548902c932463b41ca9a17f4dc68ce0a
BLAKE2b-256 68913384611551711787bb5e2548c35c8a40817331b46406016335aef886f99d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e23ee6abb111490357ef13f4218b5d7bd2ab7b5fb57f8285b29260f6356c4f30
MD5 32c1e45c64141500edc5b33cb3b72bbe
BLAKE2b-256 cdcbbbe71bed243eda84fb4a1bedb885936947c143226703828f645f85f79375

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5276c4e153d22f9ed45232bd5a06410be3c6700a2b2aaec8514292be967cb786
MD5 d38f3d619d2070e1ecaa1b9498511f9d
BLAKE2b-256 2e2aca45fb36e99a0deac12e28daa80908397dc658f21c54130296862f24f797

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e571b05b4b51dd4c5a9b9afa07629eae6fbf029bddd96fa38b6d2c92f82cf5f4
MD5 55ce999574088313cdc6e23cb6366435
BLAKE2b-256 5fe653a79dad6a2195667b4fc00a7972158be7f3614bcdd76a5964d8646b0fc5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc83864462c92f3bb21e61ad7c1fecd155bb7c88874c79968a5ab2be53671c17
MD5 b1cd7925c95800362ef8457cd2e93cb1
BLAKE2b-256 9f56b59fa07784b1fa2174a0d0c99d2d89a9a67ec4883f174c4cda5ede93dcf3

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f9a222c18810b3ea8c2bacbfde0465a98221fb59746cb25a1ef6b57ca084911
MD5 0e8323a0dfecb342342879f6782717ca
BLAKE2b-256 1742874960d006b171c4fa3541751a680ae886026bd5d2ed8d57a2db128f42b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c330a0044902f9602a6c46d76ea7f64a255ba28680988dee240dec62f8a7840f
MD5 6baf8c4e1e374057e499ed33b166fff3
BLAKE2b-256 2e30e55c014067a03cd4bd49f226b032709ff75caf43f032206e990dfb59fa94

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp312-cp312-win_arm64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a86ccd5638a87896d13a2e37bfef29591d8d303ea2b788cdc6fe4bdcae2d7b3d
MD5 8951657ee032b9d67d1e61281de2501c
BLAKE2b-256 a7f041ebec4fdf5bbaa7482253486f45546f3bee72fcbfb7bc62bd5593dd70b9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c3e3eaf78a417c38a1aff5d88b3b675fa822c07eea24e91dff3bd54eeeec3c5f
MD5 60941ddeb76ac50165ef65d9cfdd5d77
BLAKE2b-256 c5aa9a49bdf910f8b188137d42983c372c0953c59c7948149ed70fc906109fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp312-cp312-win32.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b8deee54c8615fb1533bf390394178adddf036aef092347cfba6a41d771257c
MD5 3754064d266f6e0481431ee3df4a13ae
BLAKE2b-256 63e6a89f4c8139ef3031d6fae5c6d9fba927d5980b7e174eaf1ec532a6df01e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2449dc26ca506bb4a357cf7a208a09399e6d7798a493c72f189c7081ec78c95d
MD5 188f24409ebaf1a5760164730d07eb03
BLAKE2b-256 f67432faf332d3e794968226413e84053744a5a0dbeb6969c35dd406867d7bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eeca428468a181cc6fe53c897f5377b352261eb466f1c98c414c8a7f3b5485c1
MD5 40f5bada568e693dbd1b5b9efe51bad2
BLAKE2b-256 78a5c704239cb4e349532ce7805570244a2be29c2f9cfc67617633d52dbf7d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bc761619665151d9e11d935be665382a986024ddd322ec0a2bd37e5ba911647
MD5 34b875734fb96db1c6f0e7a6a25fcee8
BLAKE2b-256 174e1028b79520a20c9a81d81393e9d993d46ebe1bd6b0a5e65e5bf5254f2a05

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d785d08eeebb32276c9dff496ebc9f9f5ae70d076a9e748023ce3140c2a45997
MD5 95920737d918d80dd5d39048328dab62
BLAKE2b-256 9c93acc7f1e3d1ba4c2464ac2fc2d9872b5b4cca52bc83013dc6e667e054feaf

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9720321bcc599b36a3667dcc99e70b645817b5a15ace61d3ec2d7a55aa6b1a85
MD5 d3b899c540446e482e698aee33c18f2d
BLAKE2b-256 848001c399132ec844ab6c6fbc487d1676b5e4774991fc2f26251f46f8df3cb0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eec566b4f8b4e89dc00c72320a84ee6b62ee5fd3ba2707f43668a1b5433dffcb
MD5 b2928bfbad00dddb454f88bc8a923ad4
BLAKE2b-256 57b2794e61ada0f6b70ac583f122331dd3bfbf806154b6b6fe3ed4bb7686abf4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73a5cf63b7fdfd615fd835be0141143df22901004946bbd8298e914abe513d91
MD5 6fb7c4d824561d49363024dcdc327abb
BLAKE2b-256 a406d1f0b7606ab980f09afa5455689486023381af52bad04e4bc46149c28eef

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f986529eb73d812018b90bbc4ab57fb99ab9c5721dfac40dc8272e72f3830281
MD5 035ec23379dfba69ed7c95c8cef1007a
BLAKE2b-256 efcc1d2d4edad7f159f3ab0b58a9b1bf73d8228b9ac213ec54c8d6ba25ae27f9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e016decf14ccf761f9b7ac2e923f8d091f64a56c4c268086609448bd3d3f9c5
MD5 0c40dbe4642af43d618808bca3ad1cab
BLAKE2b-256 bf8bdd59df3f24a06b9d614e24dd573e543cdb42127188e109e6963932d34695

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84037b92875a566fadc9b6da6ca04a0bbb804945e52f159a7bf81b5ed3d17f8d
MD5 df7832c66c03c1a654c0ff9a66556f6d
BLAKE2b-256 a364de14b4c42d8ea69533e960185a38ce9487a9dd2de2468a9adecad2188cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 73d9c650ce9172d7abed5539d3bcc27a3959112028a37991b3b4a365e58235d9
MD5 e3cfde59ebdbafe1147322732e71e752
BLAKE2b-256 167ecc94e3044ada9f72bfa0b6e452f9ed4b452e7d1a840866915d71fe78dbde

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp311-cp311-win_arm64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 180e47b28d8e6f3841ae40dfd30e6efc095aa6808d24eb3dccd97ed596e8b7ea
MD5 75fb31a74825e58f8076f7aa488d10ec
BLAKE2b-256 2fc000dff8804c528a374f7ba113aa7a4377e085a47e8a168659b2c991dd27cd

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ee59a70dad5a0ad7c7b5279506e163450689a8412b46bed05a768981159c95c1
MD5 8aa9b0b8216d899016991f9ae1f78d02
BLAKE2b-256 138a60c78e43625de39e774391dbada8050507e5d6a635681231fdd380d1939c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp311-cp311-win32.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81d30828cc0fdc0d59a1f2346146c778086deb014894069009d3fc35fd2fa90e
MD5 5eb26979072d46b566148d6e8780e2b8
BLAKE2b-256 23f100589c0dcc4c14a08c5a64ecdbc85858051a6eb3f55aa3bb7e0aa7761dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7648531ce352442a86989abbf7d6ac8dd59ace482532a6ae1be58bd25a853584
MD5 a6ab141ad8d75ef2e447646dbb7111ae
BLAKE2b-256 1008904603bf3fedac8f8a8c862a78d9e51f124908412ec2ce814bbb510a8958

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 326734b829fc7ed2f91ea657bbfe1bf68f058d6ccb4e1a9aa1ddc6534d556df1
MD5 5741817d3e854d7a6d7f31cf55cabf71
BLAKE2b-256 9304c151dad50907b69f10305f08dadc2d5b60af10ed7743bbe8d1d84aac3235

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9998e4bcd8ee5c4d4196aba0f55d51ce6a49398102103cd370ba058e2246ae4a
MD5 7a729bb46bd161b33fc59ea72ff903d1
BLAKE2b-256 7aab03dd05b848a983adab003e176908001b6608014693045a8481e34c8ef23e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ee08c7460777de64f80aaf3a9de23b19d57e0da2f104af104ea84cc4a167c45
MD5 9dfe56e3e0dcd837f35eeaee3be02e54
BLAKE2b-256 49aa00482ff38117c465e66a1f9ba68f18ec4c1f5cceed08ee8dbad12f928de2

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbc850b2261605dd223d3dd70cad2cb1a2f6239b19754f86c20f55c4bf3cd6f5
MD5 fbb264af6ea8e4a5581d1c2ac0b7f10b
BLAKE2b-256 06128eeb875e01621dfc487b289ad1609da91e0a7fd8c96827f5f1d211b50fcb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f39751fcf015788dd56943a65f1cd7d48a93f60d9d692418e4eb078961a2b60b
MD5 b084b9a6758c834d00e6e5c05931a8e2
BLAKE2b-256 b7e7ab72b37e17514a8dffba1db6b799813982bddfaa0f9ca1009e780f8a9fd6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f9acf1d9943eb1fd7549dbc1442462e0a0fd0ac49eada56a9dbdcfd367109c4
MD5 77a08edcee537df5e3b73f5575f59b8a
BLAKE2b-256 0afabe506d673201af06108bc75d45b820fb675e116300c36447d3c9194e7154

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1afc9b9da51b5680cbbddf033754132408f5f14536149fabeff05e153926167b
MD5 a9acc37dddb4bca9b249577939c4ee10
BLAKE2b-256 d51d8bd1fc32bd2da2b833da96ff99b2048dd9186767344b499133de0a4803f0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07b8d5d8f239434d576a7ad665b3b8b8823236d8230a7e700b4f2c9639fdc6a9
MD5 b49c448a2a1ff2d09a74ad7e6aa08fbe
BLAKE2b-256 0878b2a74069963075281d857ce6a1c6a6a948610fa399cf26e5032cd917f599

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfceb0af37eef9e6ce5343adb4dcb8bb85a0fa31cb1b698f7271c939978a0395
MD5 c6ff78b8c81a01470824c496a3117d09
BLAKE2b-256 95e110a089d8827b020e332d050037f019a17eb5993ebee101a8327d7bce60e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aa55521726aa89d46355c287670512989a658bb295b10ec047a0f37f44583355
MD5 d74fd6347ec4ee7cbd5949023ac54b60
BLAKE2b-256 0750e503caaa484efd51d4eefbf748f402003de2181156f64011df24ac83bf98

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: jaq_rs-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fcd27e46ed1f29935da385ef69c9a92802b8ab074f2b4c936fc2268c5df35ae8
MD5 a8069d0f36d9337b59f937567148b157
BLAKE2b-256 1253eb11d7b8eee5d9544df746f7c3c80861d103820d5e2d4d384b5f02e2f29f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp310-cp310-win32.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb28c6b2f5af6ae0ab857b73c3bfd67f7e926f75b4b12c11ef9c24d213974cde
MD5 a89452552d5d2e1b1604121759024030
BLAKE2b-256 476b4211cd13767aaf4d5be0700d9f4cfc4eabae4a880edcdd4fa6e2b508d631

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 db0b37463ceb2416dccc7de476bc61e70c36d669468a3d3f93801eeb942e706c
MD5 79b9024c340269198fd35a4fd20feb7c
BLAKE2b-256 c1af0daa2c2791d4c22496c4ce8d581a8724dcdeed8bc204fa1b727d6d0b2ef2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 006af8a915331af5b8f5e1ff9af6a261c56dc72b9e5ffd4634cc68630dfaa708
MD5 7be02f9bdfa70102dd7d9113cad5f27f
BLAKE2b-256 142d563f64d62ba32e5de93b3482c3e083ab52e8153bdf3f081d3f3c0f1d3930

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1d40f7823bd1adb645f24225a1c6453df3aa8a4251da74ac3c187df5d1197f9
MD5 6905801063f08948d7089aba138bc6ba
BLAKE2b-256 b6c9d0ed31ce98a529a026caa02d02671e59ca9cb26bf995684f0f0f65e44612

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27e47e2177b5e37bfbc7f9f3583824a7b899470275ca728d13ae3bd5d62cb232
MD5 961682c4ca37a939e1329922cf91264a
BLAKE2b-256 a6f91db5cab42343546389738ad4cd45a7df241872d2bb54628db41502afdb53

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a07b9d7632b1ba0b57a8268343b80ab8a6ee7e69b4ea58104cddb4446020c15c
MD5 42c5019a9cd375ebb3d2e23814de8d97
BLAKE2b-256 82899457897cac44abaa75ae3f392d5c6719127313a9a1c67cbca6c6afd0b8fa

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 283126ebface68845b774dac2a48926419aae12cb903c146a406f89bd2586323
MD5 37340c9e7fd6e3cd8ba91fadd85c9a74
BLAKE2b-256 928b62fa4c469f1bbbcc9deefdb1b650a195786207159650caf287105542e38d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84d4d76414e79021470331c830f8e391f8775508c1ea906a9ee2a026363fd2e8
MD5 06c13db913b07c4a854cfa09ae2a1379
BLAKE2b-256 fa21f7c641514e0f05ddbcb1166ca10d6a91a398373dcc3ca766f0402bbf6169

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b6862cdbf23feff3e2d4d588c10db8261065d3520336559134400976f3657a0
MD5 a132075b7a4e2b8e856fcd71af9e98eb
BLAKE2b-256 6251aaf4011e32a321691e041515a32a87977258b761de8ee080329080baaf0e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ddab3d7d6b160e8d23d6630d4e9bd4617f30eb4143883d3835c1d91532c41f3
MD5 2d0f73c1b37669079d7159f238960310
BLAKE2b-256 06affb7b8c9f9cf3ed348c3fb00297e8fcce7a59943c7fba5a3e9c969cd52194

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on dimastbk/jaq-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 jaq_rs-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jaq_rs-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7275c0c0e83ba83d1b64deb685fde9945e240ed917005eac86b87ab30ba0b8b9
MD5 87153a75b42c8da297f940e3e18ab440
BLAKE2b-256 c2a78161f437829eaf07b8e357f473f01ee0f7d91b69d2cfec1cdc07e84dcd1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jaq_rs-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on dimastbk/jaq-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 Pingdom Monitoring Sentry Error logging StatusPage Status page