Skip to main content

Python bindings to Rust's persistent data structures (rpds)

Project description

PyPI version Supported Python versions Build status

Python bindings to the Rust rpds crate for persistent data structures.

What’s here is quite minimal (in transparency, it was written initially to support replacing pyrsistent in the referencing library). If you see something missing (which is very likely), a PR is definitely welcome to add it.

Installation

The distribution on PyPI is named rpds.py (equivalently rpds-py), and thus can be installed via e.g.:

$ pip install rpds-py

Note that if you install rpds-py from source, you will need a Rust toolchain installed, as it is a build-time dependency. An example of how to do so in a Dockerfile can be found here.

If you believe you are on a common platform which should have wheels built (i.e. and not need to compile from source), feel free to file an issue or pull request modifying the GitHub action used here to build wheels via maturin.

Usage

Methods in general are named similarly to their rpds counterparts (rather than pyrsistent‘s conventions, though probably a full drop-in pyrsistent-compatible wrapper module is a good addition at some point).

>>> from rpds import HashTrieMap, HashTrieSet, List

>>> m = HashTrieMap({"foo": "bar", "baz": "quux"})
>>> m.insert("spam", 37) == HashTrieMap({"foo": "bar", "baz": "quux", "spam": 37})
True
>>> m.remove("foo") == HashTrieMap({"baz": "quux"})
True

>>> s = HashTrieSet({"foo", "bar", "baz", "quux"})
>>> s.insert("spam") == HashTrieSet({"foo", "bar", "baz", "quux", "spam"})
True
>>> s.remove("foo") == HashTrieSet({"bar", "baz", "quux"})
True

>>> L = List([1, 3, 5])
>>> L.push_front(-1) == List([-1, 1, 3, 5])
True
>>> L.rest == List([3, 5])
True

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

rpds_py-0.28.0.tar.gz (27.4 kB view details)

Uploaded Source

Built Distributions

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

rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (552.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (585.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (561.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (400.9 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (405.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (528.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (381.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (413.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rpds_py-0.28.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (350.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpds_py-0.28.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (363.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

rpds_py-0.28.0-cp314-cp314t-win_amd64.whl (216.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

rpds_py-0.28.0-cp314-cp314t-win32.whl (205.7 kB view details)

Uploaded CPython 3.14tWindows x86

rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_x86_64.whl (544.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_i686.whl (576.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_aarch64.whl (552.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rpds_py-0.28.0-cp314-cp314t-manylinux_2_31_riscv64.whl (390.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (518.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (372.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (403.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rpds_py-0.28.0-cp314-cp314t-macosx_11_0_arm64.whl (342.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rpds_py-0.28.0-cp314-cp314t-macosx_10_12_x86_64.whl (355.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rpds_py-0.28.0-cp314-cp314-win_arm64.whl (212.5 kB view details)

Uploaded CPython 3.14Windows ARM64

rpds_py-0.28.0-cp314-cp314-win_amd64.whl (218.9 kB view details)

Uploaded CPython 3.14Windows x86-64

rpds_py-0.28.0-cp314-cp314-win32.whl (208.0 kB view details)

Uploaded CPython 3.14Windows x86

rpds_py-0.28.0-cp314-cp314-musllinux_1_2_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rpds_py-0.28.0-cp314-cp314-musllinux_1_2_i686.whl (576.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rpds_py-0.28.0-cp314-cp314-musllinux_1_2_aarch64.whl (553.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rpds_py-0.28.0-cp314-cp314-manylinux_2_31_riscv64.whl (392.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rpds_py-0.28.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (517.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (402.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rpds_py-0.28.0-cp314-cp314-macosx_11_0_arm64.whl (341.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rpds_py-0.28.0-cp314-cp314-macosx_10_12_x86_64.whl (353.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rpds_py-0.28.0-cp313-cp313t-win_amd64.whl (215.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

rpds_py-0.28.0-cp313-cp313t-win32.whl (205.4 kB view details)

Uploaded CPython 3.13tWindows x86

rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_x86_64.whl (544.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_i686.whl (575.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_aarch64.whl (552.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rpds_py-0.28.0-cp313-cp313t-manylinux_2_31_riscv64.whl (390.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (518.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (402.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

rpds_py-0.28.0-cp313-cp313t-macosx_11_0_arm64.whl (342.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rpds_py-0.28.0-cp313-cp313t-macosx_10_12_x86_64.whl (355.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

rpds_py-0.28.0-cp313-cp313-win_arm64.whl (217.3 kB view details)

Uploaded CPython 3.13Windows ARM64

rpds_py-0.28.0-cp313-cp313-win_amd64.whl (227.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rpds_py-0.28.0-cp313-cp313-win32.whl (217.1 kB view details)

Uploaded CPython 3.13Windows x86

rpds_py-0.28.0-cp313-cp313-musllinux_1_2_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rpds_py-0.28.0-cp313-cp313-musllinux_1_2_i686.whl (583.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rpds_py-0.28.0-cp313-cp313-musllinux_1_2_aarch64.whl (558.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rpds_py-0.28.0-cp313-cp313-manylinux_2_31_riscv64.whl (401.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (408.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rpds_py-0.28.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (517.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (393.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (411.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rpds_py-0.28.0-cp313-cp313-macosx_11_0_arm64.whl (348.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rpds_py-0.28.0-cp313-cp313-macosx_10_12_x86_64.whl (366.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rpds_py-0.28.0-cp312-cp312-win_arm64.whl (217.6 kB view details)

Uploaded CPython 3.12Windows ARM64

rpds_py-0.28.0-cp312-cp312-win_amd64.whl (227.8 kB view details)

Uploaded CPython 3.12Windows x86-64

rpds_py-0.28.0-cp312-cp312-win32.whl (217.0 kB view details)

Uploaded CPython 3.12Windows x86

rpds_py-0.28.0-cp312-cp312-musllinux_1_2_x86_64.whl (553.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rpds_py-0.28.0-cp312-cp312-musllinux_1_2_i686.whl (584.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rpds_py-0.28.0-cp312-cp312-musllinux_1_2_aarch64.whl (559.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rpds_py-0.28.0-cp312-cp312-manylinux_2_31_riscv64.whl (401.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (408.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rpds_py-0.28.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (518.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (393.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (412.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rpds_py-0.28.0-cp312-cp312-macosx_11_0_arm64.whl (348.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rpds_py-0.28.0-cp312-cp312-macosx_10_12_x86_64.whl (366.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rpds_py-0.28.0-cp311-cp311-win_arm64.whl (217.3 kB view details)

Uploaded CPython 3.11Windows ARM64

rpds_py-0.28.0-cp311-cp311-win_amd64.whl (224.0 kB view details)

Uploaded CPython 3.11Windows x86-64

rpds_py-0.28.0-cp311-cp311-win32.whl (214.7 kB view details)

Uploaded CPython 3.11Windows x86

rpds_py-0.28.0-cp311-cp311-musllinux_1_2_x86_64.whl (550.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rpds_py-0.28.0-cp311-cp311-musllinux_1_2_i686.whl (584.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rpds_py-0.28.0-cp311-cp311-musllinux_1_2_aarch64.whl (559.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rpds_py-0.28.0-cp311-cp311-manylinux_2_31_riscv64.whl (398.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (404.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rpds_py-0.28.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (525.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (412.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rpds_py-0.28.0-cp311-cp311-macosx_11_0_arm64.whl (348.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rpds_py-0.28.0-cp311-cp311-macosx_10_12_x86_64.whl (362.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rpds_py-0.28.0-cp310-cp310-win_amd64.whl (223.8 kB view details)

Uploaded CPython 3.10Windows x86-64

rpds_py-0.28.0-cp310-cp310-win32.whl (215.1 kB view details)

Uploaded CPython 3.10Windows x86

rpds_py-0.28.0-cp310-cp310-musllinux_1_2_x86_64.whl (550.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rpds_py-0.28.0-cp310-cp310-musllinux_1_2_i686.whl (584.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rpds_py-0.28.0-cp310-cp310-musllinux_1_2_aarch64.whl (559.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rpds_py-0.28.0-cp310-cp310-manylinux_2_31_riscv64.whl (398.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

rpds_py-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rpds_py-0.28.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (404.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rpds_py-0.28.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (524.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rpds_py-0.28.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rpds_py-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rpds_py-0.28.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (411.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rpds_py-0.28.0-cp310-cp310-macosx_11_0_arm64.whl (348.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rpds_py-0.28.0-cp310-cp310-macosx_10_12_x86_64.whl (362.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file rpds_py-0.28.0.tar.gz.

File metadata

  • Download URL: rpds_py-0.28.0.tar.gz
  • Upload date:
  • Size: 27.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0.tar.gz
Algorithm Hash digest
SHA256 abd4df20485a0983e2ca334a216249b6186d6e3c1627e106651943dbdb791aea
MD5 4dc997c8b16584985ba720c940134cf3
BLAKE2b-256 48dc95f074d43452b3ef5d06276696ece4b3b5d696e7c9ad7173c54b1390cd70

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0.tar.gz:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d0145edba8abd3db0ab22b5300c99dc152f5c9021fab861be0f0544dc3cbc5f
MD5 5bd80b4fd209541eca48f1c7de3c2864
BLAKE2b-256 edd24a73b18821fd4669762c855fd1f4e80ceb66fb72d71162d14da58444a763

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b0f9dceb221792b3ee6acb5438eb1f02b0cb2c247796a72b016dcc92c6de829
MD5 08c1c3bb94c11941d74af616e5c2acc1
BLAKE2b-256 46c9ffe77999ed8f81e30713dd38fd9ecaa161f28ec48bb80fa1cd9118399c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6aa1bfce3f83baf00d9c5fcdbba93a3ab79958b4c7d7d1f55e7fe68c20e63912
MD5 12809417228bb62d5af240359b812e00
BLAKE2b-256 eff9ce43dbe62767432273ed2584cef71fef8411bddfb64125d4c19128015018

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 4c6c4db5d73d179746951486df97fd25e92396be07fc29ee8ff9a8f5afbdfb27
MD5 7f856e089d1f427a0d33a40fdae3e1a1
BLAKE2b-256 e015870804daa00202728cc91cb8e2385fa9f1f4eb49857c49cfce89e304eae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f0c9266c26580e7243ad0d72fc3e01d6b33866cfab5084a6da7576bcf1c4f72
MD5 68f04c9ee6c045d3757bfd62b8ec9392
BLAKE2b-256 b92d351a3b852b683ca9b6b8b38ed9efb2347596973849ba6c3a0e99877c10aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23690b5827e643150cf7b49569679ec13fe9a610a15949ed48b85eb7f98f34ec
MD5 e205966c1ebc20b839b5cf54bfa1e6ec
BLAKE2b-256 68535ae232e795853dd20da7225c5dd13a09c0a905b1a655e92bdf8d78a99fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 389c29045ee8bbb1627ea190b4976a310a295559eaf9f1464a1a6f2bf84dde78
MD5 b291518ad9c01d187e6f11a49a4783d2
BLAKE2b-256 fb4f2376336112cbfeb122fd435d608ad8d5041b3aed176f85a3cb32c262eb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24743a7b372e9a76171f6b69c01aedf927e8ac3e16c474d9fe20d552a8cb45c7
MD5 669dc23717a189775d991654b3cb83c5
BLAKE2b-256 5a5ce5de68ee7eb7248fce93269833d1b329a196d736aefb1a7481d1e99d1222

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48b55c1f64482f7d8bd39942f376bfdf2f6aec637ee8c805b5041e14eeb771db
MD5 6da498d12ab5200fd4305e8416f23125
BLAKE2b-256 aef21391c819b8573a4898cedd6b6c5ec5bc370ce59e5d6bdcebe3c9c1db4588

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3b695a8fa799dd2cfdb4804b37096c5f6dba1ac7f48a7fbf6d0485bcd060316
MD5 b2aceca53ab4969d294cfc32f98db217
BLAKE2b-256 53253706b83c125fa2a0bccceac951de3f76631f6bd0ee4d02a0ed780712ef1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31eb671150b9c62409a888850aaa8e6533635704fe2b78335f9aaf7ff81eec4d
MD5 85b89ad2d3469cf1feed08de8a098de0
BLAKE2b-256 28f2db318195d324c89a2c57dc5195058cbadd71b20d220685c5bd1da79ee7fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5e7101145427087e493b9c9b959da68d357c28c562792300dd21a095118ed16
MD5 9fef07d3b19af3ec5dd365005ded19cf
BLAKE2b-256 aebcb43f2ea505f28119bd551ae75f70be0c803d2dbcd37c1b3734909e40620b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 216.2 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7a4e59c90d9c27c561eb3160323634a9ff50b04e4f7820600a2beb0ac90db578
MD5 93f0d080c5f61e16baa49870eb518e72
BLAKE2b-256 d76964d43b21a10d72b45939a28961216baeb721cc2a430f5f7c3bfa21659a53

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 205.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8014045a15b4d2b3476f0a287fcc93d4f823472d7d1308d47884ecac9e612be3
MD5 645580adf4a7c30318a69bf0851f5108
BLAKE2b-256 2c37dcc5d8397caa924988693519069d0beea077a866128719351a4ad95e82fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b670c30fd87a6aec281c3c9896d3bae4b205fd75d79d06dc87c2503717e46092
MD5 75e3be78e78a543ab087cfe36223fb94
BLAKE2b-256 d30c5bafdd8ccf6aa9d3bfc630cfece457ff5b581af24f46a9f3590f790e3df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3072b16904d0b5572a15eb9d31c1954e0d3227a585fc1351aa9878729099d6c
MD5 35905ad1fe40fde45a26267064d3548c
BLAKE2b-256 6147d922fc0666f0dd8e40c33990d055f4cc6ecff6f502c2d01569dbed830f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e8ee6413cfc677ce8898d9cde18cc3a60fc2ba756b0dec5b71eb6eb21c49fa1
MD5 d7ea49b88834f8518cbc6a05c1d58495
BLAKE2b-256 394cf08283a82ac141331a83a40652830edd3a4a92c34e07e2bbe00baaea2f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 4b0cb8a906b1a0196b863d460c0222fb8ad0f34041568da5620f9799b83ccf0b
MD5 08996637def77c3ea320458a19e3e32c
BLAKE2b-256 b4074d5bcd49e3dfed2d38e2dcb49ab6615f2ceb9f89f5a372c46dbdebb4e028

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3114f4db69ac5a1f32e7e4d1cbbe7c8f9cf8217f78e6e002cedf2d54c2a548ed
MD5 c29bbbbbcb84b8ac740bd0f694e430bb
BLAKE2b-256 ab815d98cc0329bbb911ccecd0b9e19fbf7f3a5de8094b4cda5e71013b2dd77e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd3bbba5def70b16cd1c1d7255666aad3b290fbf8d0fe7f9f91abafb73611a91
MD5 3dad202194d3a86fec3ee30297f0d182
BLAKE2b-256 54dd02cc90c2fd9c2ef8016fd7813bfacd1c3a1325633ec8f244c47b449fc868

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3eb248f2feba84c692579257a043a7699e28a77d86c77b032c1d9fbb3f0219c
MD5 0fffe848f53106c4540ffc17629fd349
BLAKE2b-256 45ed091a7bbdcf4038a60a461df50bc4c82a7ed6d5d5e27649aab61771c17585

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1460ebde1bcf6d496d80b191d854adedcc619f84ff17dc1c6d550f58c9efbba
MD5 2a8c8d020157601fe5af09fe0e7a0b45
BLAKE2b-256 07c160144a2f2620abade1a78e0d91b298ac2d9b91bc08864493fa00451ef06e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5338742f6ba7a51012ea470bd4dc600a8c713c0c72adaa0977a1b1f4327d6592
MD5 7374790cdaab3bfbaa11d96e30caa532
BLAKE2b-256 32fe51ada84d1d2a1d9d8f2c902cfddd0133b4a5eb543196ab5161d1c07ed2ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf681ac76a60b667106141e11a92a3330890257e6f559ca995fbb5265160b56e
MD5 25360315f769c7baaeeca84281212106
BLAKE2b-256 3f799f14ba9010fee74e4f40bf578735cfcbb91d2e642ffd1abe429bb0b96364

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1cde22f2c30ebb049a9e74c5374994157b9b70a16147d332f89c99c5960737a
MD5 733da3399136fa95d1d11db675c048c8
BLAKE2b-256 beec568c5e689e1cfb1ea8b875cffea3649260955f677fdd7ddc6176902d04cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a69df082db13c7070f7b8b1f155fa9e687f1d6aefb7b0e3f7231653b79a067b
MD5 edbe694fcbb74b55054ad4d54872d7ca
BLAKE2b-256 51ecd5681bb425226c3501eab50fc30e9d275de20c131869322c8a1729c7b61c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 212.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a6fe887c2c5c59413353b7c0caff25d0e566623501ccfff88957fa438a69377d
MD5 cf6f7f0a70e6fd09186bd491277c9add
BLAKE2b-256 0fe03ab3b86ded7bb18478392dc3e835f7b754cd446f62f3fc96f4fe2aca78f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 218.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 66e6fa8e075b58946e76a78e69e1a124a21d9a48a5b4766d15ba5b06869d1fa1
MD5 df6635c01247c45009626688cd0dd534
BLAKE2b-256 b4840c11fe4d9aaea784ff4652499e365963222481ac647bcd0251c88af646eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 208.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 adc8aa88486857d2b35d75f0640b949759f79dc105f50aa2c27816b2e0dd749f
MD5 10def59958a273bb1a0e6b7eb2972a08
BLAKE2b-256 6c6510643fb50179509150eb94d558e8837c57ca8b9adc04bd07b98e57b48f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbdc5640900a7dbf9dd707fe6388972f5bbd883633eb68b76591044cfe346f7e
MD5 15815281363f10f897d7150ab0174b7c
BLAKE2b-256 ab1285a57d7a5855a3b188d024b099fd09c90db55d32a03626d0ed16352413ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76500820c2af232435cbe215e3324c75b950a027134e044423f59f5b9a1ba515
MD5 63901bfc73e324dad0d4950271006139
BLAKE2b-256 708050d5706ea2a9bfc9e9c5f401d91879e7c790c619969369800cde202da214

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6796079e5d24fdaba6d49bda28e2c47347e89834678f2bc2c1b4fc1489c0fb01
MD5 579c34540a0d5e268cf3ff1907be20a4
BLAKE2b-256 74aecab05ff08dfcc052afc73dcb38cbc765ffc86f94e966f3924cd17492293c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a805e9b3973f7e27f7cab63a6b4f61d90f2e5557cff73b6e97cd5b8540276d3d
MD5 98132ed9e09db3e6b411acdf86465d03
BLAKE2b-256 1ac2a980beab869d86258bf76ec42dec778ba98151f253a952b02fe36d72b29c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ae8ee156d6b586e4292491e885d41483136ab994e719a13458055bec14cf370
MD5 a3340aad1842a1a7ae84adb58d0a86f4
BLAKE2b-256 da37e84283b9e897e3adc46b4c88bb3f6ec92a43bd4d2f7ef5b13459963b2e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f586db2e209d54fe177e58e0bc4946bea5fb0102f150b1b2f13de03e1f0976f8
MD5 0dbdbb5792380d03cf80f376896ba90e
BLAKE2b-256 623cca704b8d324a2591b0b0adcfcaadf9c862375b11f2f667ac03c61b4fd0a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e80848a71c78aa328fefaba9c244d588a342c8e03bda518447b624ea64d1ff56
MD5 b202ee7a35744610b8b554c338203329
BLAKE2b-256 23e1579512b2d89a77c64ccef5a0bc46a6ef7f72ae0cf03d4b26dcd52e57ee0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a358a32dd3ae50e933347889b6af9a1bdf207ba5d1a3f34e1a38cd3540e6733
MD5 3362e5393cb99126c47e5c7b8991c717
BLAKE2b-256 2313bce4384d9f8f4989f1a9599c71b7a2d877462e5fd7175e1f69b398f729f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fe0438ac4a29a520ea94c8c7f1754cdd8feb1bc490dfda1bfd990072363d527
MD5 75ceede7f0c9d1560b01a9a828bcd1c5
BLAKE2b-256 09e3921eb109f682aa24fb76207698fbbcf9418738f35a40c21652c29053f23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d3fd16b6dc89c73a4da0b4ac8b12a7ecc75b2864b95c9e5afed8003cb50a728
MD5 67f36c47b56f779a75564cbc06eecdda
BLAKE2b-256 dab5b1d3c5f9d3fa5aeef74265f9c64de3c34a0d6d5cd3c81c8b17d5c8f10ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f274f56a926ba2dc02976ca5b11c32855cbd5925534e57cfe1fda64e04d1add2
MD5 62da4296f24fb274b2a378f33a89365b
BLAKE2b-256 f99f890f36cbd83a58491d0d91ae0db1702639edb33fb48eeb356f80ecc6b000

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dcdcb890b3ada98a03f9f2bb108489cdc7580176cb73b4f2d789e9a1dac1d472
MD5 a00c3a5838c22588be55929b45a44e82
BLAKE2b-256 0847ffe8cd7a6a02833b10623bf765fbb57ce977e9a4318ca0e8cf97e9c3d2b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 215.9 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 7b7d9d83c942855e4fdcfa75d4f96f6b9e272d42fffcb72cd4bb2577db2e2907
MD5 73f7cb9b064b2255839608885fe4fed0
BLAKE2b-256 92e415947bda33cbedfc134490a41841ab8870a72a867a03d4969d886f6594a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 205.4 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3aa4dc0fdab4a7029ac63959a3ccf4ed605fee048ba67ce89ca3168da34a1342
MD5 3bbc5eb665dba1aa8fa07d07d8b75ac1
BLAKE2b-256 51312f46fe0efcac23fbf5797c6b6b7e1c76f7d60773e525cb65fcbc582ee0f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcf1d210dfee61a6c86551d67ee1031899c0fdbae88b2d44a569995d43797712
MD5 2ba552ab3fdb941286fbd7410303bc0e
BLAKE2b-256 4ad4407ad9960ca7856d7b25c96dcbe019270b5ffdd83a561787bc682c797086

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b14b0c680286958817c22d76fcbca4800ddacef6f678f3a7c79a1fe7067fe37
MD5 b7a2c53bdca72cde3026405848e94b61
BLAKE2b-256 5dcb6ca2d70cbda5a8e36605e7788c4aa3bea7c17d71d213465a5a675079b98d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aa23b6f0fc59b85b4c7d89ba2965af274346f738e8d9fc2455763602e62fd5f
MD5 b7c8f79f6beda4bcf0e516ecff04b27c
BLAKE2b-256 42b571e8777ac55e6af1f4f1c05b47542a1eaa6c33c1cf0d300dca6a1c6e159a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d61b355c3275acb825f8777d6c4505f42b5007e357af500939d4a35b19177259
MD5 d544ae4934c55982e92fbf080ca5f147
BLAKE2b-256 f05d3bce97e5534157318f29ac06bf2d279dae2674ec12f7cb9c12739cee64d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d252db6b1a78d0a3928b6190156042d54c93660ce4d98290d7b16b5296fb7cc
MD5 73711bcf2bf2f8a4b02690143415470d
BLAKE2b-256 b12cf30892f9e54bd02e5faca3f6a26d6933c51055e67d54818af90abed9748e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f1d92ecea4fa12f978a367c32a5375a1982834649cdb96539dcdc12e609ab1a
MD5 1e060f7091d290be52edbffd8db4d1ac
BLAKE2b-256 7bd32decbb2976cc452cbf12a2b0aaac5f1b9dc5dd9d1f7e2509a3ee00421249

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a5690671cd672a45aa8616d7374fdf334a1b9c04a0cac3c854b1136e92374fe
MD5 89498e745e60d999ff0a73951069d9ab
BLAKE2b-256 73bf6d6d15df80781d7f9f368e7c1a00caf764436518c4877fb28b029c4624af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5bbc701eff140ba0e872691d573b3d5d30059ea26e5785acba9132d10c8c31d
MD5 a7e60a8d63b42116c26eda653e94ec15
BLAKE2b-256 600768e6ccdb4b05115ffe61d31afc94adef1833d3a72f76c9632d4d90d67954

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5d9b86aa501fed9862a443c5c3116f6ead8bc9296185f369277c42542bd646b
MD5 1e9d92302e28b789bf9500f7ba7d620e
BLAKE2b-256 e21c22513ab25a27ea205144414724743e305e8153e6abe81833b5e678650f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 acbe5e8b1026c0c580d0321c8aae4b0a1e1676861d48d6e8c6586625055b606a
MD5 6f8ab7136b635ad888f5eafee958974b
BLAKE2b-256 e3f0886bd515ed457b5bd93b166175edb80a0b21a210c10e993392127f1e3931

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a7306c19b19005ad98468fcefeb7100b19c79fc23a5f24a12e06d91181193fa
MD5 e5eec6cba8159dc0b622b165efede89c
BLAKE2b-256 f76d0c2ee773cfb55c31a8514d2cece856dd299170a49babd50dcffb15ddc749

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f296ea3054e11fc58ad42e850e8b75c62d9a93a9f981ad04b2e5ae7d2186ff9c
MD5 adb85ba175f2c6d25609f863de41f8ef
BLAKE2b-256 5c8b0c69b72d1cee20a63db534be0df271effe715ef6c744fdf1ff23bb2b0b1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 04c1b207ab8b581108801528d59ad80aa83bb170b35b0ddffb29c20e411acdc1
MD5 34c8df9fe69009277ff10a565cb4dcea
BLAKE2b-256 e0d65f39b42b99615b5bc2f36ab90423ea404830bdfee1c706820943e9a645eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 227.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e0a0311caedc8069d68fc2bf4c9019b58a2d5ce3cd7cb656c845f1615b577e1e
MD5 1f0391a14cda4b989bac066390bec3a7
BLAKE2b-256 3c1cf25a3f3752ad7601476e3eff395fe075e0f7813fbb9862bd67c82440e880

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 217.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2e42456917b6687215b3e606ab46aa6bca040c77af7df9a08a6dcfe8a4d10ca5
MD5 cf806f76f4c52803a93f2b4750a71552
BLAKE2b-256 8485d34366e335140a4837902d3dea89b51f087bd6a63c993ebdff59e93ee61d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a52a5169c664dfb495882adc75c304ae1d50df552fbd68e100fdc719dee4ff9
MD5 0e9580010ec4aceb040c800f13b386b3
BLAKE2b-256 66df62fc783781a121e77fee9a21ead0a926f1b652280a33f5956a5e7833ed30

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cb7203c7bc69d7c1585ebb33a2e6074492d2fc21ad28a7b9d40457ac2a51ab7
MD5 3d899ca35c237f662a24cbdbb2d09032
BLAKE2b-256 b03d06f3a718864773f69941d4deccdf18e5e47dd298b4628062f004c10f3b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b43c6a3726efd50f18d8120ec0551241c38785b68952d240c45ea553912ac41
MD5 56a6c50b3a770241aeaeaff1c0247e20
BLAKE2b-256 68617c195b30d57f1b8d5970f600efee72a4fad79ec829057972e13a0370fd24

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 0a403460c9dd91a7f23fc3188de6d8977f1d9603a351d5db6cf20aaea95b538d
MD5 fa134cf85a935cee85a427370dd2e8a5
BLAKE2b-256 19ade68120dc05af8b7cab4a789fccd8cdcf0fe7e6581461038cc5c164cd97d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8e1e9be4fa6305a16be628959188e4fd5cd6f1b0e724d63c6d8b2a8adf74ea6
MD5 72433b1396aac6fd34556e963b375846
BLAKE2b-256 caeea324d3198da151820a326c1f988caaa4f37fc27955148a76fff7a2d787a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2036d09b363aa36695d1cc1a97b36865597f4478470b0697b5ee9403f4fe399
MD5 7217f513a21a922b718486197d281374
BLAKE2b-256 c49123efe81c700427d0841a4ae7ea23e305654381831e6029499fe80be8a071

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf128350d384b777da0e68796afdcebc2e9f63f0e9f242217754e647f6d32491
MD5 0f4082de98cf20679e6165a2087efbc1
BLAKE2b-256 8cd073e2217c3ee486d555cb84920597480627d8c0240ff3062005c6cc47773e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2412be8d00a1b895f8ad827cc2116455196e20ed994bb704bf138fe91a42724
MD5 4f12c0e533e7d22a7119c8167a984ef4
BLAKE2b-256 11b2ccb30333a16a470091b6e50289adb4d3ec656fd9951ba8c5e3aaa0746a67

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85beb8b3f45e4e32f6802fb6cd6b17f615ef6c6a52f265371fb916fae02814aa
MD5 9f49508a3d11619193d8c08aac178fc8
BLAKE2b-256 fc00ed1e28616848c61c493a067779633ebf4b569eccaacf9ccbdc0e7cba2b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7366b6553cdc805abcc512b849a519167db8f5e5c3472010cd1228b224265cb
MD5 cdfb6a991e59fab891b74f221d09a61d
BLAKE2b-256 9990c1e070620042459d60df6356b666bb1f62198a89d68881816a7ed121595a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edd267266a9b0448f33dc465a97cfc5d467594b600fe28e7fa2f36450e03053a
MD5 4515c391d2412f61a62a73b0fafbd7d9
BLAKE2b-256 00341c61da1b25592b86fd285bd7bd8422f4c9d748a7373b46126f9ae792a004

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9e184408a0297086f880556b6168fa927d677716f83d3472ea333b42171ee3b
MD5 db538842c8fc56252af79a92428f2c84
BLAKE2b-256 d303ce566d92611dfac0085c2f4b048cd53ed7c274a5c05974b882a908d540a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 217.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1f0cfd1c69e2d14f8c892b893997fa9a60d890a0c8a603e88dca4955f26d1edd
MD5 3fe1bb82f1144a05658ce6ab126cf330
BLAKE2b-256 5791f3fb250d7e73de71080f9a221d19bd6a1c1eb0d12a1ea26513f6c1052ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 227.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a410542d61fc54710f750d3764380b53bf09e8c4edbf2f9141a82aa774a04f7c
MD5 107a3e972d5cc9263bb3effd0c1d94d0
BLAKE2b-256 af3645f6ebb3210887e8ee6dbf1bc710ae8400bb417ce165aaf3024b8360d999

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 217.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d15431e334fba488b081d47f30f091e5d03c18527c325386091f31718952fe08
MD5 febd1e57846863d2a06540b2277ab4f8
BLAKE2b-256 7d8933e675dccff11a06d4d85dbb4d1865f878d5020cbb69b2c1e7b2d3f82562

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2374e16cc9131022e7d9a8f8d65d261d9ba55048c78f3b6e017971a4f5e6353c
MD5 09922e094ff8c73afd840c7429f200ce
BLAKE2b-256 b6ee44d024b4843f8386a4eeaa4c171b3d31d55f7177c415545fd1a24c249b5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 961ca621ff10d198bbe6ba4957decca61aa2a0c56695384c1d6b79bf61436df5
MD5 106a8c4bd8a0cf67aedf3c689f625c64
BLAKE2b-256 e75e64826ec58afd4c489731f8b00729c5f6afdb86f1df1df60bfede55d650bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 735f8495a13159ce6a0d533f01e8674cec0c57038c920495f87dcb20b3ddb48a
MD5 1aad7ac6322d1e52641662167e416e2e
BLAKE2b-256 ff6a841337980ea253ec797eb084665436007a1aad0faac1ba097fb906c5f69c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ad50614a02c8c2962feebe6012b52f9802deec4263946cddea37aaf28dd25a66
MD5 8f73f1013f40e343e70825f195a6d4c8
BLAKE2b-256 6a99e4e1e1ee93a98f72fc450e36c0e4d99c35370220e815288e3ecd2ec36a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8455933b4bcd6e83fde3fefc987a023389c4b13f9a58c8d23e4b3f6d13f78c84
MD5 da94361544cb4b0e61db7d858d736cb7
BLAKE2b-256 3ecd49ce51767b879cde77e7ad9fae164ea15dce3616fe591d9ea1df51152706

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46959ef2e64f9e4a41fc89aa20dbca2b85531f9a72c21099a3360f35d10b0d5a
MD5 4b8b767bd78d911d5876784c36216d59
BLAKE2b-256 31d05f52a656875cdc60498ab035a7a0ac8f399890cc1ee73ebd567bac4e39ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f3fa06d27fdcee47f07a39e02862da0100cb4982508f5ead53ec533cd5fe55e
MD5 82fcf5d39c3352b0028ea4019015fb5a
BLAKE2b-256 137e4bdb435afb18acea2eb8a25ad56b956f28de7c59f8a1d32827effa0d4514

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ee514e0f0523db5d3fb171f397c54875dbbd69760a414dccf9d4d7ad628b5bd
MD5 028b87b72e9d47171e0059a4191ce6c0
BLAKE2b-256 e7783de32e18a94791af8f33601402d9d4f39613136398658412a4e0b3047327

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e819e0e37a44a78e1383bf1970076e2ccc4dc8c2bbaa2f9bd1dc987e9afff628
MD5 2bbbee429fd4894a5eee7531f3ebc004
BLAKE2b-256 18ea42d243d3a586beb72c77fa5def0487daf827210069a95f36328e869599ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5deca01b271492553fdb6c7fd974659dce736a15bae5dad7ab8b93555bceb28
MD5 3179afe2d7ebd4df503d0b63bb9fea87
BLAKE2b-256 6135e0c6a57488392a8b319d2200d03dad2b29c0db9996f5662c3b02d0b86c02

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d678e91b610c29c4b3d52a2c148b641df2b4676ffe47c59f6388d58b99cdc424
MD5 376be152d681f2110513a85ca8f2f0ea
BLAKE2b-256 56f9a0f1ca194c50aa29895b442771f036a25b6c41a35e4f35b1a0ea713bedae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b4f28583a4f247ff60cd7bdda83db8c3f5b05a7a82ff20dd4b078571747708f
MD5 ee996a9857f227ad66850e7256af8f12
BLAKE2b-256 b85c6c3936495003875fe7b14f90ea812841a08fca50ab26bd840e924097d9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4e27d3a5709cc2b3e013bf93679a849213c79ae0573f9b894b284b55e729e120
MD5 22b9e68bc77e7e0832b84ceed809e44a
BLAKE2b-256 b421c8e77a2ac66e2ec4e21f18a04b4e9a0417ecf8e61b5eaeaa9360a91713b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 224.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd8d86b5d29d1b74100982424ba53e56033dc47720a6de9ba0259cf81d7cecaa
MD5 8c8d4901ae0f9dbe5e026088144fb5a7
BLAKE2b-256 12fdb0f48c4c320ee24c8c20df8b44acffb7353991ddf688af01eef5f93d7018

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 214.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5cfa9af45e7c1140af7321fa0bef25b386ee9faa8928c80dc3a5360971a29e8c
MD5 3798bdbb58f9ac992ab44af18e2f2c3a
BLAKE2b-256 5f50da8b6d33803a94df0149345ee33e5d91ed4d25fc6517de6a25587eae4133

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1571ae4292649100d743b26d5f9c63503bb1fedf538a8f29a98dce2d5ba6b4e6
MD5 4fc0b1faeccc9a25ef2532db672614fa
BLAKE2b-256 9c9cffc6e9218cd1eb5c2c7dbd276c87cd10e8c2232c456b554169eb363381df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f60c7ea34e78c199acd0d3cda37a99be2c861dd2b8cf67399784f70c9f8e57d
MD5 0627378bf59c92641d6344238af1f39c
BLAKE2b-256 8dbe73bb241c1649edbf14e98e9e78899c2c5e52bbe47cb64811f44d2cc11808

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9a40040aa388b037eb39416710fbcce9443498d2eaab0b9b45ae988b53f5c67
MD5 98e5b6cd9ca2f384f76344a3c8ee337b
BLAKE2b-256 ddf5e1cec473d4bde6df1fd3738be8e82d64dd0600868e76e92dfeaebbc2d18f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 0d3259ea9ad8743a75a43eb7819324cdab393263c91be86e2d1901ee65c314e0
MD5 2c24812c2cccbaab625182fafd47737c
BLAKE2b-256 6a83f3642483ca971a54d60caa4449f9d6d4dbb56a53e0072d0deff51b38af74

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac9f83e7b326a3f9ec3ef84cda98fb0a74c7159f33e692032233046e7fd15da2
MD5 0dace9142385f9e8067c15ccbe5dcf5e
BLAKE2b-256 1f5314e37ce83202c632c89b0691185dca9532288ff9d390eacae3d2ff771bae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9b06fe1a75e05e0713f06ea0c89ecb6452210fd60e2f1b6ddc1067b990e08d9
MD5 e3068b42d1b1d5130dad47bf924d039a
BLAKE2b-256 40cbc6734774789566d46775f193964b76627cd5f42ecf246d257ce84d1912ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9699fa7990368b22032baf2b2dce1f634388e4ffc03dfefaaac79f4695edc95
MD5 8a5c7ed37609cf5701b9fa82102b5161
BLAKE2b-256 1b85ac258c9c27f2ccb1bd5d0697e53a82ebcf8088e3186d5d2bf8498ee7ed44

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c03002f54cc855860bfdc3442928ffdca9081e73b5b382ed0b9e8efe6e5e205
MD5 00aaec291440ab141d5c1e8994aea465
BLAKE2b-256 b42554fd48f9f680cfc44e6a7f39a5fadf1d4a4a1fd0848076af4a43e79f998c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25dbade8fbf30bcc551cb352376c0ad64b067e4fc56f90e22ba70c3ce205988c
MD5 410cc9d0a4227e14552bff9c5fec5cee
BLAKE2b-256 682e94223ee9b32332a41d75b6f94b37b4ce3e93878a556fc5f152cbd856a81f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a7548b345f66f6695943b4ef6afe33ccd3f1b638bd9afd0f730dd255c249c9e
MD5 36f34b506d1452c824c0dd5ecf5bc743
BLAKE2b-256 44092d9c8b2f88e399b4cfe86efdf2935feaf0394e4f14ab30c6c5945d60af7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28ea02215f262b6d078daec0b45344c89e161eab9526b0d898221d96fdda5f27
MD5 dd5dd4a4943a1112e5d8e0679483ac4a
BLAKE2b-256 5d679503f0ec8c055a0782880f300c50a2b8e5e72eb1f94dfc2053da527444dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03065002fd2e287725d95fbc69688e0c6daf6c6314ba38bdbaa3895418e09296
MD5 9b7c42e729d74fb2e28f5271ae5b19f4
BLAKE2b-256 a634058d0db5471c6be7bef82487ad5021ff8d1d1d27794be8730aad938649cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 223.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e32dd207e2c4f8475257a3540ab8a93eff997abfa0a3fdb287cae0d6cd874b8
MD5 0e7c08025d7f4a78408571de076c9c6b
BLAKE2b-256 6cde4ce8abf59674e17187023933547d2018363e8fc76ada4f1d4d22871ccb6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rpds_py-0.28.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 215.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f9174471d6920cbc5e82a7822de8dfd4dcea86eb828b04fc8c6519a77b0ee51e
MD5 5927b2edafea4149e709cca7574fb064
BLAKE2b-256 debcec2c004f6c7d6ab1e25dae875cdb1aee087c3ebed5b73712ed3000e3851a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2a34fd26588949e1e7977cfcbb17a9a42c948c100cab890c6d8d823f0586457
MD5 24f0ac651e12427eadc3cccac44f4b55
BLAKE2b-256 18b0a19743e0763caf0c89f6fc6ba6fbd9a353b24ffb4256a492420c5517da5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ada7754a10faacd4f26067e62de52d6af93b6d9542f0df73c57b9771eb3ba9c4
MD5 dac86132e35d71c568bd3ea3d26c2882
BLAKE2b-256 a9eae10353f6d7c105be09b8135b72787a65919971ae0330ad97d87e4e199880

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efd489fec7c311dae25e94fe7eeda4b3d06be71c68f2cf2e8ef990ffcd2cd7e8
MD5 463f5d9b34626c4a39794b861d898f17
BLAKE2b-256 c164a8e0f67fa374a6c472dbb0afdaf1ef744724f165abb6899f20e2f1563137

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 f0b2044fdddeea5b05df832e50d2a06fe61023acb44d76978e1b060206a8a476
MD5 ccb7e32459adb33e97ab882f06f8c929
BLAKE2b-256 f7bc0625064041fb3a0c77ecc8878c0e8341b0ae27ad0f00cf8f2b57337a1e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1b553dd06e875249fd43efd727785efb57a53180e0fde321468222eabbeaafa
MD5 486ac798b83b4e6bb9567ec91cdf5c95
BLAKE2b-256 6a65118afe854424456beafbbebc6b34dcf6d72eae3a08b4632bc4220f8240d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6897bebb118c44b38c9cb62a178e09f1593c949391b9a1a6fe777ccab5934ee7
MD5 87982f4a33c504c9bbdd770c696afdf0
BLAKE2b-256 e1c84a4ca76f0befae9515da3fad11038f0fce44f6bb60b21fe9d9364dd51fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 beb880a9ca0a117415f241f66d56025c02037f7c4efc6fe59b5b8454f1eaa50d
MD5 a5755cbab0476dd162448cbba484c1ec
BLAKE2b-256 7687a4e3267131616e8faf10486dc00eaedf09bd61c87f01e5ef98e782ee06c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e8456b6ee5527112ff2354dd9087b030e3429e43a74f480d4a5ca79d269fd85
MD5 ac334171327ff67c5df72545a956add8
BLAKE2b-256 5c37e292da436f0773e319753c567263427cdf6c645d30b44f09463ff8216cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4794c6c3fbe8f9ac87699b131a1f26e7b4abcf6d828da46a3a52648c7930eba
MD5 e1a3970aa8a9406319b62984f117eb9f
BLAKE2b-256 f193c05bb1f4f5e0234db7c4917cb8dd5e2e0a9a7b26dc74b1b7bee3c9cfd477

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05cf1e74900e8da73fa08cc76c74a03345e5a3e37691d07cfe2092d7d8e27b04
MD5 6b4067cb6d9990947a6e1f61906d9d5f
BLAKE2b-256 5d1afed7cf2f1ee8a5e4778f2054153f2cfcf517748875e2f5b21cf8907cd77d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a4c6b05c685c0c03f80dabaeb73e74218c49deea965ca63f76a752807397207
MD5 072b743922c0c8c72b81af6cfb88ffb3
BLAKE2b-256 84916acce964aab32469c3dbe792cb041a752d64739c534e9c493c701ef0c032

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.28.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.28.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b6013db815417eeb56b2d9d7324e64fcd4fa289caeee6e7a78b2e11fc9b438a
MD5 8fc1718bd8003a300194663beb9c6a39
BLAKE2b-256 82f813bb772dc7cbf2c3c5b816febc34fa0cb2c64a08e0569869585684ce6631

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.28.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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