Skip to main content
rsloop logo

An event loop for asyncio written in Rust

PyPI - Version Tests PyPI Downloads

rsloop is a PyO3-based asyncio event loop implemented in Rust.

Each rsloop.Loop owns a dedicated Rust runtime thread for loop coordination and I/O work. On Linux, low-level fd watchers plus plain TCP / Unix socket readiness, socket reads, and non-TLS server accepts are driven from that thread through compio with io_uring support enabled. Python callbacks, tasks, and coroutines still run on the thread that calls run_forever() or run_until_complete() (usually the main Python thread).

The package exposes:

  • a native extension module at rsloop._loop
  • a Python wrapper in python/rsloop/__init__.py
  • rsloop.Loop, rsloop.EventLoopPolicy, rsloop.new_event_loop(), rsloop.run(...), rsloop.install(), and rsloop.uninstall()

Repository metadata currently targets Python >=3.8. The packaged project now supports the core event-loop surface on Linux, macOS, and Windows, including Windows pipe transports and subprocess workflows.

Documentation

Project documentation now lives in docs/.

If you are new to the repository, start with:

To browse the docs locally with MkDocs:

uvx --from mkdocs mkdocs serve

Install

From PyPI:

pip install rsloop

With uv:

uv add rsloop

From conda-forge, using pixi:

pixi add rsloop

Usage

Simple entry point:

import rsloop

async def main():
    ...

rsloop.run(main())

Install as the default asyncio event loop policy:

import asyncio
import rsloop

rsloop.install()
try:
    asyncio.run(main())
finally:
    rsloop.uninstall()

Manual loop creation also works:

import asyncio
import rsloop

loop = rsloop.new_event_loop()
asyncio.set_event_loop(loop)
try:
    loop.run_until_complete(...)
finally:
    asyncio.set_event_loop(None)
    loop.close()

Importing rsloop also patches asyncio.set_event_loop() so Python 3.8 can accept an rsloop.Loop instance, matching the behavior exercised by tests/test_run.py.

Custom Async Rust Extensions

rsloop now exposes a small Rust interop API for downstream PyO3 extensions. That lets you write your own async Rust code, return it to Python as an awaitable, and run it under the active rsloop event loop.

The public entry point is rsloop::rust_async:

  • get_current_locals(...)
  • future_into_py(...)
  • future_into_py_with_locals(...)
  • local_future_into_py(...)
  • local_future_into_py_with_locals(...)
  • re-exports of TaskLocals and into_future_with_locals(...)

See examples/rust/README.md for a complete extension example built with maturin.

Verified Surface Area

The current codebase implements these user-facing areas.

Loop lifecycle and scheduling:

  • run_forever, run_until_complete, stop, close
  • time, is_running, is_closed
  • get_debug, set_debug
  • call_soon, call_soon_threadsafe, call_later, call_at
  • returned Handle and TimerHandle objects with cancel() / cancelled()

Tasks, futures, and execution helpers:

  • create_future, create_task
  • set_task_factory, get_task_factory
  • set_exception_handler, get_exception_handler, call_exception_handler, default_exception_handler
  • set_default_executor, run_in_executor
  • shutdown_asyncgens, shutdown_default_executor
  • callback execution under captured contextvars.Context
  • asyncio.get_running_loop() support while running on rsloop
  • rsloop.run(...) helper, with asyncio.run(..., loop_factory=...) integration on Python 3.12+

I/O and networking:

  • add_reader, remove_reader, add_writer, remove_writer
  • sock_recv, sock_recv_into, sock_sendall, sock_accept, sock_connect
  • getaddrinfo, getnameinfo
  • create_server, create_connection
  • create_unix_server, create_unix_connection
  • connect_accepted_socket
  • returned Server objects with close(), is_serving(), get_loop(), and sockets()
  • returned StreamTransport objects with write(), writelines(), close(), abort(), is_closing(), write_eof(), can_write_eof(), get_extra_info(), get_protocol(), set_protocol(), pause_reading(), resume_reading(), is_reading()

Pipes, subprocesses, and signals:

  • connect_read_pipe, connect_write_pipe
  • subprocess_exec, subprocess_shell
  • returned ProcessTransport and ProcessPipeTransport objects
  • higher-level compatibility with asyncio.create_subprocess_exec() and asyncio.create_subprocess_shell()
  • Unix subprocess options including cwd, env, executable, pass_fds, start_new_session, process_group, user, group, extra_groups, umask, and restore_signals
  • add_signal_handler, remove_signal_handler

Profiling:

  • profile(...), profiler_running(), start_profiler(), stop_profiler()

Fast Streams

Importing rsloop patches asyncio.open_connection() and asyncio.start_server() by default.

That import-time behavior is controlled by RSLOOP_USE_FAST_STREAMS and can be disabled with:

export RSLOOP_USE_FAST_STREAMS=0

The native fast-stream path is used only when:

  • the running loop is an rsloop.Loop
  • ssl is unset or None

Otherwise rsloop falls back to the stdlib asyncio.streams helpers.

The implementation lives in src/fast_streams.rs and is backed by the lower level transport code in src/stream_transport.rs.

Runtime Model

Today the runtime is hybrid rather than fully single-threaded:

  • the loop coordination thread is always the central scheduler
  • on Linux, add_reader / add_writer, plain socket reads, and non-TLS socket accept loops use the compio runtime on that thread
  • some transport paths still fall back to helper threads, especially TLS I/O, TLS server accept, and parts of the legacy transport write path

That means the codebase has started the move toward a single-runtime-thread I/O model, but has not finished eliminating every helper thread yet.

Current Limitations

These gaps are visible in the current implementation.

  • TLS uses a rustls backend with a narrower compatibility surface than CPython's OpenSSL-backed ssl module. In particular, encrypted private keys are not supported yet, and the fast-stream monkeypatch still falls back to stdlib helpers whenever ssl is enabled. TLS transport internals also still use helper-thread paths instead of the newer runtime-thread compio socket path.
  • Subprocess support still has one notable gap: preexec_fn remains unsupported because running arbitrary Python between fork() and exec() is unsafe in this runtime model.
  • Unix-specific APIs remain Unix-specific: create_unix_server, create_unix_connection, add_signal_handler, remove_signal_handler.
  • Platform-specific limitations still apply: Unix socket APIs and Unix signal handlers remain Unix-only, and several subprocess options such as pass_fds, user, group, and umask are still specific to Unix process spawning.
  • The transport runtime model is still in transition: plain socket reads and non-TLS accepts now run on the loop runtime thread on Linux, but writes and TLS-heavy paths are not fully collapsed onto that same single-threaded I/O path yet.

Build

Quick check:

cargo check

Release build and editable install:

cargo build --release
uv run --with maturin maturin develop --release

Build release wheels into dist/wheels:

scripts/build-wheels.sh

scripts/build-wheels.sh currently defaults to CPython 3.8 3.9 3.10 3.11 3.12 3.13 3.14 plus free-threaded 3.14t, and uses uv python install / uv python find to locate interpreters.

Profiling

Profiling is behind the Cargo feature profiler and is disabled by default. Build or install with that feature first:

cargo build --release --features profiler
uv run --with maturin maturin develop --release --features profiler

Then wrap the code you want to inspect:

import rsloop

with rsloop.profile():
    rsloop.run(main())

Or manage the session manually:

import rsloop

rsloop.start_profiler()
try:
    rsloop.run(main())
finally:
    rsloop.stop_profiler()

This starts a Tracy client inside the process. Build a release binary, open the Tracy desktop profiler, then connect to the running process while the profiled code is executing.

Linux and macOS release wheels are built with profiler support enabled. Other builds still need --features profiler when built locally. The Tracy feature set is aimed at local profiling: enable, only-localhost, and sampling.

For very short-lived runs you can force the process to block on exit until a server has connected and drained all data by setting TRACY_NO_EXIT=1 in the environment.

If the extension was built without --features profiler, profile() and start_profiler() raise a runtime error.

Examples

Run the repository examples from the project root:

uv run python examples/01_basics.py
uv run python examples/02_fd_and_sockets.py
uv run python examples/03_streams.py
uv run python examples/04_unix_and_accepted_socket.py
uv run python examples/05_pipes_signals_subprocesses.py

Example files: examples/01_basics.py, examples/02_fd_and_sockets.py, examples/03_streams.py, examples/04_unix_and_accepted_socket.py, examples/05_pipes_signals_subprocesses.py.

The repository also includes:

Benchmark

uv run --with maturin maturin develop --release
uv run --with uvloop python benchmarks/compare_event_loops.py

An example output from that script on Linux with CPython 3.14.0:

callbacks (200,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
rsloop         0.041608     0.040585      4,806,807        1.00x
uvloop         0.087539     0.086690      2,284,707        2.10x
asyncio        0.229563     0.221348        871,222        5.52x

tasks (50,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
uvloop         0.084425     0.083497        592,239        1.00x
rsloop         0.091845     0.090982        544,397        1.09x
asyncio        0.138782     0.137716        360,276        1.64x

tcp_streams (5,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
rsloop         0.119483     0.118451         41,847        1.00x
uvloop         0.119582     0.116446         41,812        1.00x
asyncio        0.138408     0.134438         36,125        1.16x

See benchmarks/README.md for workload details and extra flags, and demo/README.md for the FastAPI loop comparison demo.

Acknowledgements

rsloop builds on the Python asyncio model and is implemented with PyO3 on the Rust side. The runtime and I/O work in the current implementation rely in part on compio. On Windows, parts of the runtime also rely on vibeio.

License

This project is licensed under the Apache License, Version 2.0. See LICENSE for the full text.

Download files

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

Source Distribution

rsloop-0.1.21.tar.gz (674.7 kB view details)

Uploaded Source

Built Distributions

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

rsloop-0.1.21-cp314-cp314t-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

rsloop-0.1.21-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

rsloop-0.1.21-cp314-cp314t-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp314-cp314t-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rsloop-0.1.21-cp314-cp314t-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rsloop-0.1.21-cp314-cp314-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows ARM64

rsloop-0.1.21-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

rsloop-0.1.21-cp314-cp314-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp314-cp314-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp314-cp314-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rsloop-0.1.21-cp314-cp314-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rsloop-0.1.21-cp313-cp313-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows ARM64

rsloop-0.1.21-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

rsloop-0.1.21-cp313-cp313-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp313-cp313-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp313-cp313-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rsloop-0.1.21-cp313-cp313-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rsloop-0.1.21-cp312-cp312-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows ARM64

rsloop-0.1.21-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

rsloop-0.1.21-cp312-cp312-manylinux_2_39_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp312-cp312-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rsloop-0.1.21-cp312-cp312-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rsloop-0.1.21-cp311-cp311-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows ARM64

rsloop-0.1.21-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

rsloop-0.1.21-cp311-cp311-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp311-cp311-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rsloop-0.1.21-cp311-cp311-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rsloop-0.1.21-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

rsloop-0.1.21-cp310-cp310-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp310-cp310-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rsloop-0.1.21-cp310-cp310-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rsloop-0.1.21-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

rsloop-0.1.21-cp39-cp39-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp39-cp39-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp39-cp39-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rsloop-0.1.21-cp39-cp39-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

rsloop-0.1.21-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

rsloop-0.1.21-cp38-cp38-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

rsloop-0.1.21-cp38-cp38-manylinux_2_39_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

rsloop-0.1.21-cp38-cp38-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.21-cp38-cp38-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file rsloop-0.1.21.tar.gz.

File metadata

  • Download URL: rsloop-0.1.21.tar.gz
  • Upload date:
  • Size: 674.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21.tar.gz
Algorithm Hash digest
SHA256 1a5052a733ac00286966376051f43bb9737d1007626a940f640c4c0f6dc4cbfe
MD5 9fdc311c9c05875fd784ba8587460e51
BLAKE2b-256 30295cc28be77fce654d3e6e06f1f9d9fce6544c6bd2fc0159840b3316125b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21.tar.gz:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8c9f7215361d37ffa4063c76bc0361a25f839e37f4bf3ea3bf49ad3a5de6fd9c
MD5 7c891b18024b6ff61f953bdc484430e6
BLAKE2b-256 32352e0181b07fac0ac1216db05eba3a134eee163ca81056718fee06d1e651a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for rsloop-0.1.21-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c6cf33a08887c6a54df62f59daa05638fb0b5c9160dd8159ff0362f776863076
MD5 94d594c5c247704ba952a0a7d5743995
BLAKE2b-256 671d18b30fa113d0a5384ad0d6e83c00766163b432e2343dda7d6433c5f460a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314t-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1c8c9d4d1a7dbfc67fab41831ec24b03e22405dd19a9288023ff69c0e9af9ad8
MD5 cd62232343875bcbb8e36d7e66b3f56f
BLAKE2b-256 e46350bdc075545757a088570eb5ad7eab474810cb51286d04c72822a325ca3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314t-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314t-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ce711183d5a45ae53b121768f63de4d422b655b97a4ba12a8a237d22faeb06d0
MD5 122565e8c3d76ff2328be9e232d7edcc
BLAKE2b-256 349c9c80c4419c6c25789164eafc50df4cda744d1c22cbbd11f45779c78fc08c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314t-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dd18febb57226e33896958254a1912f4c8354f108c3858cfd300bacb953e6ac
MD5 57fee1830a22a3d99ea548bb6eb9b6ba
BLAKE2b-256 5d93e8fecd8092c4d330b43c34463068e97cda6186d350a2cac9e22f21500e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f7d8a66833ae69bfded2f3c8dd792dc888c89b090b0d7720e604d785a9de0e0
MD5 6f6acffd55e1672e7b18f3a18992ffdf
BLAKE2b-256 826df6f138dd3f1f166ebc06775ecfce959448fc8a44eeff9f3ded7437c73464

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 497925d1e9750701a95aece4b31baf975bdf55585e84d2d73a2fbc235b10ecff
MD5 45972d5fdf7e6834a742f6b0142df547
BLAKE2b-256 5115314cdd6c1f4c83d2d28d92fd6d480e0c3c74fc837b9b4758fd9f9cef1ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1349e796ad3217e8eee2561e538d8858985c648671e480344df9033eabb270f3
MD5 fec5c2a97dd133825ccc09e0b8de9ba7
BLAKE2b-256 f4ad6c68dd5878da4fa4fcae35790c0780b3515722af3329e95ab56052b940da

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1bafa37a799c44f84dfea565b3f470785907fadadfea76fa1eebfb81befd06ca
MD5 94b4c29b14fadcd9d628437f29dc3caf
BLAKE2b-256 1896de0b42a20261762246d608ea193757141abcd7d89bbb55184853d1d26e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 642d6790805ff02ad6e7eb18c5ffcc16e1ea8600d7607649a71c6a1cfb97c3d0
MD5 0254505d8ba69cd83571d9d6af6f6b5f
BLAKE2b-256 4e26460b389f2461fb49af3ccb54dd73dc33203bd5b669604d2989031c7cba5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 819a3982523fcf9c8004aaa8c6df5ec098d723362936a4a55a60bd86434a26e6
MD5 b730a57fa55259681a22c7158d526f1e
BLAKE2b-256 02d138df1086d465228b782bca1cba847635ffc8bd8650319a05c39db83b8477

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92795ea946ddc2ed72c7ea9d0336319beaae2a3349094b66456f3ee23ad10242
MD5 2c5aeeceec97b45eb6efa6aad04b9308
BLAKE2b-256 4647736427d8d0b97308642c63796349e1175d739d10d3720e03ad1c218a2f19

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8607b3cc20baf36362b685bd5881970f9ae568183ff667103c5f7ab73978a4db
MD5 d5319d869b63a98714ad85918412c13a
BLAKE2b-256 d2e05b4ab52b0eceb276afb40377501844fd2b5467e6b3cc956fa2e7932c8d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7e2413bf24d8fadbdbc1ae31783166dcd79bf96b6ca9c9b03e343e23f52bf6d8
MD5 92b959f5191ebb416434da4d0b1a5802
BLAKE2b-256 ec3523cb9c44e1f2827daf96ee2bc7a9a6f10e702273f452e93fd9aba8da7804

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 10e0ed5b519495e25c65f24eb114dcd95fbf39e17a89fbc84cf61089e6a17524
MD5 eb74f15322f67dc27cbe7a304381ccf7
BLAKE2b-256 10c3fef3d9aa5901572da9d6f2d1605b5950183fd6d005ed674448bbb1cfdee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp313-cp313-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0127d5ea517baf4fc059ac762597025b67c341ea88841d1cd8eecab2c91dfcbd
MD5 3d20ad9dbaa56966cef11e2404f53d3b
BLAKE2b-256 cde7ce7ac670869c9b6ff8d87b149a1afc870560df7d8185fab0790253a6c818

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp313-cp313-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 616908eb37b12156c172b5e294494a4703dc1a950a67fdf89fe8102a0ae44548
MD5 d5d2c4cafbd64ab7d545fd99f3a2c657
BLAKE2b-256 3ab6fa26ced110216f1a3daf122a25c834bf0aac94c0133c81fca7e8bab1b1db

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e631f66111ed05001f2a99dbc48c9bc706f0e5b06cecc55482092be8096d30a0
MD5 1002aab8b3e51b3e6ade8d44d9e3a059
BLAKE2b-256 750cc28e50ba825d39768a1cfc54102a1941258baa016039b303a6b6ccc49dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c790353b7752239c7afb1867cc5aac319bcf77949bbdefde54db6a32020e0829
MD5 b3d2ecd2aedf4c9f9ec73becbca63898
BLAKE2b-256 2928abafb9f84d3c971ae5e56bb86fafbb2ec18b014baf832a0c36d65d1e3e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d71142538f40bc433857ec78564d740fe5116c49921749c86a9ee4f4ea3860a5
MD5 c5e65000511b949e44cdf24eee71d297
BLAKE2b-256 505d574f53f5f3b834cf0cb60be8be810ff43b83dc47194fc96f314bc7928e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 34f126bf7e2b5250f910c94ec2461e8f4ad99d7dfb3cb7c37469943becbc4f37
MD5 c64f0fc53af33316728b4f1e783bea14
BLAKE2b-256 1f8a920667005e4d9f109c47f355dbd9b43683d240f3b84ae5a66bb2894c950e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp312-cp312-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b87b70cb3f5fada3ef8352d7096f8eeda65fe2aaf79fd0294cba38daa44ab9e8
MD5 35dacd56d3e62ed35c46c72e97d390b3
BLAKE2b-256 dc10bb1f1bb56122539b7242173a66b3ef9c181c32440e9168cfc431f6dcff73

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp312-cp312-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a77c18fe17f0c682aa55a332b797b20bc4e654fac8953f81624711fb59c6178
MD5 fc398aa822d70dd53bceb5a1f754e612
BLAKE2b-256 ca1d8972293bdb2a7930718f0cb39696028a84371837eead5c0d57d9947adde9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4d10194b9b174923d1fef5d21f57da130d2a29b1401e95fc514b26db452da8d
MD5 10ffb6820568e8715e0061b61776f5c4
BLAKE2b-256 59dbdc129697d5866246fb593a236777bf218260707c0ccd111f30c18beee512

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 76c2ad24924e0737e09e54e95418f63452155499780e7c093d81534090c8fd48
MD5 f1b35e97301d4db3a081e9feeae75da0
BLAKE2b-256 2bac762f6293ea0c22b380e83e75ccb731db9d1263778c9c50402b7ba9a18d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 228a7d8d657d060e20a246bf4996c922d1f844d7a3bccd7e41474753418fc973
MD5 0bfc2ac0deab08afa84687a9eaaee32d
BLAKE2b-256 47e922998e59546c630c75ec4b759b51ba69357c5cd942c8acbd4a75167fa955

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3f4ae0f35538ed7d277c3a41c6b043296b560b900c7e578b5f9e2c1f7844d115
MD5 f4fdc3b9e1d41a07ab171200e92da86b
BLAKE2b-256 af294def498026fb66c21290d86c80c46a9307f722b64869ec13cbc272365a57

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp311-cp311-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1d115ed5080884c36e0be57bf514b3c106517de80b0ae13dc3e64cf38557f6a0
MD5 c03a3533757df62b99874ba4519733fe
BLAKE2b-256 e33a301be229dd61657c38ae1aa137875ee51c0f34e8536a218380fc57ad7cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp311-cp311-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55825befe47b853c515c82f2db951ca7578bc81a9cf92fd6dc2ba4a3675daa6e
MD5 a6f637ebf2fa0d10ed0ee304eab79d07
BLAKE2b-256 937ad76ebde3dec0936baa41bc65db23f01046be7d5f5b57f8fc101730d82e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd83d3c3494601fe72abfe89d4599c5036b2f9e1ba9778aa88353cc78cf59832
MD5 1bb34c4cc929a0eb83757a0ed350e10d
BLAKE2b-256 bbcd1c26f4e3769bfa5666e3067991a85367a6f462cb2fe7dc6b05ba25d0c009

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3666542f9ab3eacb6c283bc7c1894cc344794952ddd69a095d027066a2973e10
MD5 c90c2970e68b2f34a44bceacad173d76
BLAKE2b-256 829c037c539f88829900b804a50fb1396d9790f855ef81ec8af1a8fa2ffb131f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 aa26614c894c39e8d7eebe321d77f035cf614da1eb1e3c29491c6e34fa31937c
MD5 f506cb7ae2d1cd12b37ffe9ff1e3112f
BLAKE2b-256 551c4170610dc7541edb595037509e1d4ebcea362cf7c355a8c068ac52bf48b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp310-cp310-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1f7d463291dc980d0f49e25a5c91ed3f09eb62505f3ec5c60b95e8bbfd7cb07b
MD5 c52bcf231568fabfdb575b5ce4fefbf0
BLAKE2b-256 05482194efe266680ef634cfaaa1022427bcaada4acb22f9ea7c2a272814f281

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp310-cp310-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd9b02c267ce661a729ea0fc7a76c24ef30b760fc8bd06fae53ad99d2c7a7e3d
MD5 d810bbbf293d6cd9f45aafd40319095e
BLAKE2b-256 a7ee850ebdb850c95060ff8231fe249061b47c40bd8d4eb70e811729917e23e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48ffdbf387edaec5cc329abbfeb9a4ea9e930a25b5b8cf4935c267fd35907437
MD5 a352468124ce6de2bf8c3a236f37e351
BLAKE2b-256 cf6338aa307440e220f3ce9cef32ed099088645942d58ee79f07859f12a49d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46f3bf2fa6b703443c06baa8cbdfeaa07e36a6b60c09cc70e2a2cab91b25bf7c
MD5 c426aca1b8af373db8cbd3603a255f74
BLAKE2b-256 fbfda22a5c91979085a1dc6f6f9362c9d02645741b0bde5343ed3225ed4bc2de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 90b8c219a27e0e904ca4a8cc116561e88f2978ddc9c2f7044dcef4b99dfcb20d
MD5 9f84cc7a2dd215c26c415481913dc2c5
BLAKE2b-256 66f52069cb0a9113e366f6dc59c833023312dc91e705b8df7ce3cdd901a3883a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp39-cp39-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 282d4b85835a04764ddad902591e30010877878ae35ea46f5fd60147fb1baf67
MD5 12c953e8327e5afd3b5cb90f97e75f92
BLAKE2b-256 a0a09ff54045b12d213cb996d20d3ab7f1b24b25dc76bf0e9178b1aa5cc4ecdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp39-cp39-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f31e9be3dcf050adefd08aaaa332d6592d315938d1cd9e822ebe2b660f2a7309
MD5 23f5af02794e5bcab97d4e34af799f9f
BLAKE2b-256 ba0693be863c938f1085116a5b24520a04caba73f6dab0f6dc86b315611b3184

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 64dcc0fdb7477d4728b15a61bd1ced55ce222b18cd461f4ee73c81582beba56b
MD5 4da61881d7d62ac3d1643383cd1d5b78
BLAKE2b-256 f0e1e56337684b385ed08004483eef69b97d885b8f64edf9c08e03a383fc171d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.21-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.21-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8c9fb1db535dd0b13ad4d301ef63d13888322a9a6ba36c93307e4532908a2ea9
MD5 3a479788da22dff1ec3fa8c62c2fadb7
BLAKE2b-256 8a7e2746c7d5a115b52c3a7533cacfa309be2e31ba311b7c604575f6550b3e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp38-cp38-win_amd64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 17b69b82fd1f708af6d8e51fa208dd38264067bcaaa2626be24dd207926a0a4a
MD5 67fb873dcdc691b1ca95133b8f772a6f
BLAKE2b-256 48e44eb9fdb084405128db44db2e30b61d9b58c922cde5e3d1b9e58386d3f02a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp38-cp38-manylinux_2_39_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 7d5a9e21de95f1beba75e5db18765a086c737f75584fb0e2f9979bb081e44d62
MD5 cd2cda6abf079b602ca8eee30411dd61
BLAKE2b-256 d74e0143345354d41c89ccdaa957764d8f1d2c57e03b63c0a990e661b19ccd73

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp38-cp38-manylinux_2_39_aarch64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e8a7c35a957f9230283c82602d67280c706b3f20ac703e11df10bec70c2633e
MD5 080bfda3647f421135f56171dc8d0bff
BLAKE2b-256 3e5cc2bdb48dc01cc47e91216102a181df710badf2dd276409987a4e42d6bfeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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

File details

Details for the file rsloop-0.1.21-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.21-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd4fefc8b76a59d987857b31d15364ad9f77ad6421c66ef625c84dd5f7b94f10
MD5 7f81fa6f9ed312c0412e3426970360fd
BLAKE2b-256 76997a57d4b2feb13534b6abf76871386802e9fac21c8e5dfa08fe02e98ad43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.21-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on RustedBytes/rsloop

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