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.

Release wheels do not include profiler support. Build locally with --features profiler to enable it. 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     peak_rss   vs_fastest
rsloop         0.026938     0.026501      7,424,571     31.6 MiB        1.00x
uvloop         2.488100     2.486339         80,383     31.0 MiB       92.37x
asyncio        2.587463     2.585188         77,296     29.5 MiB       96.05x

tasks (50,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.060862     0.060544        821,534     37.8 MiB        1.00x
uvloop         0.067037     0.066937        745,855     38.4 MiB        1.10x
asyncio        0.105238     0.104145        475,115     36.2 MiB        1.73x

tcp_streams (5,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.099350     0.092110         50,327     32.3 MiB        1.00x
uvloop         0.133553     0.130359         37,438     31.5 MiB        1.34x
asyncio        0.300831     0.295368         16,621     29.6 MiB        3.03x

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.24.tar.gz (679.1 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.24-cp314-cp314t-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

rsloop-0.1.24-cp314-cp314t-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp314-cp314t-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rsloop-0.1.24-cp314-cp314t-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rsloop-0.1.24-cp314-cp314-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

rsloop-0.1.24-cp314-cp314-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp314-cp314-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

rsloop-0.1.24-cp314-cp314-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rsloop-0.1.24-cp313-cp313-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

rsloop-0.1.24-cp313-cp313-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp313-cp313-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

rsloop-0.1.24-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rsloop-0.1.24-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rsloop-0.1.24-cp312-cp312-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

rsloop-0.1.24-cp312-cp312-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp312-cp312-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

rsloop-0.1.24-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rsloop-0.1.24-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

rsloop-0.1.24-cp311-cp311-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp311-cp311-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

rsloop-0.1.24-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rsloop-0.1.24-cp311-cp311-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rsloop-0.1.24-cp310-cp310-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp310-cp310-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

rsloop-0.1.24-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rsloop-0.1.24-cp310-cp310-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

rsloop-0.1.24-cp39-cp39-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp39-cp39-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

rsloop-0.1.24-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rsloop-0.1.24-cp39-cp39-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

rsloop-0.1.24-cp38-cp38-manylinux_2_39_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

rsloop-0.1.24-cp38-cp38-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

rsloop-0.1.24-cp38-cp38-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.24-cp38-cp38-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: rsloop-0.1.24.tar.gz
  • Upload date:
  • Size: 679.1 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.24.tar.gz
Algorithm Hash digest
SHA256 82eec4c619784752a95aa521e5f519893c412bd3a27bdc6d4f45682e85424295
MD5 9acfafb7e59bc6e69a1a46e3abc8e2be
BLAKE2b-256 2eb6c24d17ea83ec293b6a34abd93d027371269faa0a70d5f3b8b0ad3da05a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24.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.24-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0b5dbd62fb42c18359c5e2104102bb96d88806a87d19a83842472046e764b4f2
MD5 c2b42a1b60c3370640e11d5299fdcdb9
BLAKE2b-256 6b00a86ce019cac59b64b30895c56ac373847f027972caa90c92873164f01e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 def76cfffe288ae4ddcab11a65d75a7868f996c73123f4926c588b377c5fa238
MD5 84675f9c03330bf5a7a0581e7fc6d1f8
BLAKE2b-256 c9fd478a5f466d8a32bbf613a5d4858614b99f8cc8bb06d956db5f8745c2be4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314t-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3b8089bf7abb55d4daf75d4aec3f98c33658b38c62a4ffa2c1bbb48805980f02
MD5 c1790831eb943a5dd2a1bcb44954f6a9
BLAKE2b-256 71dc20a0bd19381e13c1fab6d8d05e4a52102197e9c3738484f7413f1cf8c530

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314t-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b67159a63a2165d50152310708d2ff6749814722a660e508487208ff52ff060d
MD5 640102751d01e8de96f79b4ec2e5081a
BLAKE2b-256 d485486d1ca9eeaf8133bd4d627ddbb31edbd3cf350cd17f83e700fdd1e5deff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2033ada980cc972518555c587a7de578461f46d85ac7903fba4763c71efd3b3b
MD5 a62de7d259bfd701a239181b18e0f839
BLAKE2b-256 0639816f15b84af3df13bcf6a5044f0d5a752e2dfe9933966ad2ffcaeeb3f153

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50c210529e7a2d7170e49815407d9e80b9d2f482f92d41673ba64876873297dc
MD5 4582f66e4b7e9fed0d73830457120d03
BLAKE2b-256 8567bcfaf25a021dff5f56247958200fa2a3cc604f450890dd0d6bf69ca46e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.24-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.3 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.24-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 733e185eb0597f17995038b03aa0ee375783caa6a986b1f4241f81b32ddeb0cb
MD5 69638c408ba62993480f5e24ef2f80fb
BLAKE2b-256 1bcd23724aa7fb58322756852ed490c192f60265d1169427b63ec4566d8d3b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 65b5e2737cbec7e9be3e4a3d2f89eb978568ccab853e1b7570c36e0118b17d10
MD5 9870e2644fcb3566a55f0364536d27d6
BLAKE2b-256 11ad1d37a22313c2f3a2166acf94928b9508800de3e3316069d25993a4e3ee60

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 aeefe7fa2063e04874ace93ad6a322843de17d42a6175a909989ef9d3056f620
MD5 4a84a53955b9581d86c6b7591a2a0d0b
BLAKE2b-256 212def418039af508df137195f960ec166a2847bddd7c6788fd06695a0185130

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f64552c0ed457da33217d46099fd0b9020c37f26f144aa4189d4312b8512f8c5
MD5 3b2402cd49d3058900743e3378552428
BLAKE2b-256 64d908c8307d723bb55dcf150d86e4be4b4fa125705617107f8e03e00ce594b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed01559c38949abad1b457130ed685e027e3d01b46c2caa13e831426a35b148a
MD5 159b40b6696d9daefc031fd558105b67
BLAKE2b-256 f01139d17c0545dadf3a41bc6f7c70ccbdeaa1ce055b91532de42a2ca895dd0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f33a9e44efae5469dfb42ec7e1e8e05898d173653364a9a43aecb20a094796c
MD5 e4a67b5b848afdabef8461f5cc1955fb
BLAKE2b-256 f535cdd6e21cca881667a3a926df8eb3e63ecb37aefc47a1a3c3f28f6adad953

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.24-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.3 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.24-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 46bfe24cad7ad06e6a9a2ff34a5702520501a46ba799d08b2a62400aafba15aa
MD5 ddabccda1282336581b5805893527c99
BLAKE2b-256 ff00c105cf3e7ea3cb36db03e17f891048dedcd3f6a76500a251ffdc9a49e8d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6fe439b2c2363a14dd42565a303f352e2f9e18809a5c3a5a6e79f85ce74ad2b
MD5 f7c875c76c9eb239d6d123174f799686
BLAKE2b-256 31a55f6bb7465d53b23882f9fb140170bf63b821732fde30388d1fd5c3eccda1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 bb6a9c4f5e112460d6df31f786d0cf452737ed5dc7775a2452841c2e583d7696
MD5 efecacb8fdc2a30269b75d16a533e719
BLAKE2b-256 49487c5b84a168c1b5f6d449c17f2509f19d350de7d9a39d48565fa75d0c831a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 41400b61b0d2e6ad7f642dbcff7615da5210da64976c63be60b3fda48dabe0fb
MD5 8d65d3a89a2639a9c4031c29ff2bd178
BLAKE2b-256 affddc0e65fcfbe4ec8734d68e71e9be0498a253c90803ca58e29d5d6a403684

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5eda4c715c4e429f40e801c8df211393d4feadffcd6437518e1c52f410e26e50
MD5 0b470ba3823696070ec550997aa60da5
BLAKE2b-256 58266d83211a5694ea5ae899383dd4bf394745d795128e881cd9c7c7598d1f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c932fd5ec5af9978b8df7b3da5516e5b9a9c303f39c49c1e5f721f8f9157ab2f
MD5 572b859abefc20760bf1dfdf9db42f7b
BLAKE2b-256 9ee3068aaea2e8084740c13034d2af19d1d3b3131fb025cd94a581d8b6fa975e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.24-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.3 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.24-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d1a20e8ac0663664b4503b26a56358dd00be1f0f1175968c78972f4dc1d0e964
MD5 b47578f4d4d7b6630e687ddaa3a7c6ca
BLAKE2b-256 77d403aad1bb05b6ca372d27df36621867b184212559899b0afe57fcddc9c706

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc647cc4b0f20edbacef4692f8d3a734295c1cde5ca0d493386e30d89fb7c69b
MD5 c96507e1e630e21d6bd2ef3d2052e4fd
BLAKE2b-256 64962fd68e6a32569bc1234463a468a865ea8c511e9244ed6fc220a70b9a65db

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f3389a69ff34e606fce34affe9508d538ee2a349fcca76345b4c6b8caf31ec78
MD5 53202edabb4a333c3bb736e4696e857e
BLAKE2b-256 3106b132ce2b3f127a3405ab2221409e906dfe257cdec31c2735c5895b13d7c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 aec39a207a24bd76374d1463dd3a1589254fae46964e6c683d489c992158ed59
MD5 f2f924130635e22b8968929a7e29fce7
BLAKE2b-256 c9575d44e2ef05c94030ef250624a0cf74313ee4894e7f3a7141e6e7c7580d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 910a2e24a33830bcc3e673d66ff42cdab1e1431dae789a0318350476bb6eb79b
MD5 3f485f4b18edc68b7951e73ca180ce64
BLAKE2b-256 35e634d86aeaff74c60b21c3a09da36ef65724e8832058844271acf7b4fa56a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14d3b95a8ba93d29b27a44060198fd8a295f3309e4cbe543db8ca2079cc4f45d
MD5 36ae2fdcbdf43c27e6e8bfc7cdf5f4d9
BLAKE2b-256 9db16e4b45d301aa643a13f820f063efd8bc8792c725d3c1aca2c1c3b356e933

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 178d18b799a6c50bc444a76fb303b2b11d2b2dabd47ba6c6227f9a540b416dda
MD5 3b0c84d915cbeae3f54602e0267bc54d
BLAKE2b-256 0284b061b93ddc7ccd6c9d836e3c4f108859ba32e0c8e31dbea4f076954ff704

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c51e257418b70dea492db1ac770caef36109b32e43be7c50902daf8b1124cbb
MD5 d062696461762ed997c3d8950439c156
BLAKE2b-256 73e79cc9c56727292a3a7a8d238a31b922a9380cca6c35d53cb78d0bda9b88dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6be9d2499efaf59981f38ed1f48e64c4e6583fc9db3602a41302a8f9656e0e43
MD5 ac37180999e9553f2c29c99e8fdbe93e
BLAKE2b-256 5b6b9a66261d9927fb8ed11b7cab22a3e5a4913629c35c2f47307dbd5628ec76

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 747faaa63419f8ab5cb27cb83b627aef680ac0cda1feeb55b9a42d3dd428f419
MD5 5f15387a818add60826621257d298d12
BLAKE2b-256 1e632e29029e436b25f202ec099617f0b1954886ff05aa484baa6647a54fbec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 427394650d858f7869311aba8753bff479c4a7f1128220651aadeee7fa30828d
MD5 03eddf9bec71b65640bd0d79fd06bde0
BLAKE2b-256 0e1837eb25d037ee52347c11354a640e8a7fa8241437198d99c520e74c8a41a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc8a2eec0b7af3f23aaf83505e7d58748d9024dcab1a4d88ab3f395d05e31cf0
MD5 0c7b53d3608ffa6fd8c80dd37d6004e6
BLAKE2b-256 452abdb5e50d6f916595f743da34bc5dde059fd0a272cc7936e42963a2ca46d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82f9151c45fe6f43ce60a55ef126277cde5c6a229664b8c1143f40d3757a39dd
MD5 ebc39cb7619f8b23e495d857c7bbc29e
BLAKE2b-256 3090484565d9761181afdbce1beffc2b1f1cf5546aed1bc05fd14a1117025d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a89fc8560608734351f42b76e5895c1fce2f3c1e6273d4015203d8358b2e8632
MD5 f23e1bdf63672d133560b4f4adaaef89
BLAKE2b-256 414b581680b85718b8f444543118bfe46e8591d22da54675f2d1584358153a03

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 075b4ba26e1a870e3ca5b48be425d60d2d38fd6d2d6f6a458aa1feadd0b670cc
MD5 d7b81e5f69d94f77a2fceaee15a002e5
BLAKE2b-256 dee78b90f041d788096863993caf4fb27be5a0b1ee0ebf96e56257b8f29ba1e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61bb890073fe6918bd1698e8adda55a12f728d9e7a552dfb0832ed28c056b09d
MD5 cd80c5866a4601965309409402c0e108
BLAKE2b-256 e21aa30542824723561ebb413ff157bb8e8f6c0cdc78d866d50638e72aa87f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d63e615562f9e4505d88af3f171339bde685e358a6f134f4fd25237b6ea492d2
MD5 e160f6819dad04bae2e3751ce37d1843
BLAKE2b-256 d99229cc4ab6074deaf8067eac4a038f4a273d523768bdf792ac6dabe7d9bdd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2d7fd26b6e44a207acfefe6d92d0f7f0b6346d9c831f791854f7c3cd9bf4314b
MD5 c48b450675efa971aef1a595c1f58bef
BLAKE2b-256 2c6810408b9599e7fb1ff84187d3f2db3d0af28c5f19793fa1bf604747baed4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1d75ea6be84ab0cf22dc1a87f4dc9fc1948513150ad6a7d9f91e27e0997bbfb9
MD5 a86510a266125cf033b1f06fd1a78fa3
BLAKE2b-256 f43159d9ec4221ba6aa3c50430ef98afc7a7401d16e945c1a02b2668421a1802

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e4af050d00ad90236dacceb32dc3cb30a13946f6585ea0da154b345f3155898a
MD5 b73bdcb0552e58b9443f1af3120a70a6
BLAKE2b-256 8959f5780773cbba2f7704cc0cebc43649ea51d410cb7b0201c10713475f4648

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e52f5d5cdf9a069b6d74d90d4673b86c1bd19623e7ebdf57d359a72dcaa8c018
MD5 efb3918a58900cc6b9fc1181f844810d
BLAKE2b-256 3b19c4d83c896dc01475d3056b4f54be7c21896ce74a95038ef2a673b356b746

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f42c497da2f776e20ebe63bdb11d1c2fce6b268ee25e999b94a1f2cac15e8c12
MD5 6046af14c1542a7ae48b8e7487205202
BLAKE2b-256 f50ddaa3177b5840434660fa2221cf6612289347e38f584c8df263e7131b3511

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rsloop-0.1.24-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.24-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6ddcb1471e70857cbfd6b3e7b6407eedc421ca61d548be7f4ffefcb687889f91
MD5 4b1f2a5b9d46bb2d4ddf024a3ae2ab9c
BLAKE2b-256 80076d8bba800d3db9b61e21966dea0228f5b552aa7f974f58483e04c55363e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f67f2a0d6b39059cee08c536a0b8d30fcdc5e84ba0c0c484545c6eb7475526bd
MD5 42ff284f52bb1e72d3abfd4823960b3b
BLAKE2b-256 52af17a5e89ca91b83fa3fb93b82a82ff9d3e2044a5f79ff48559ce4e88315bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 91e7c57de2e881ecafd3f1d50df78a231743d346e969fbd6754d5a1a63239048
MD5 b50860aa240416dcc19d3b7133010a68
BLAKE2b-256 2619ce11b62b3208c592b2f601d81a6e3853a7a00b7e5a4b32e9ea2655dc2aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c9428001e47288180ba536bf0b621da1dd73c84ef7621b263438406d9c5f1e3
MD5 0ca62a161c6273b8dd5bd54bed3d232f
BLAKE2b-256 3fd3cf1a0cb3293605af5bb795ca1d8e05e6ca93934710d44bc087ebe3c9986b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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.24-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rsloop-0.1.24-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 004f911297fe159820479e9255e8df58f526b190c9c2d3b65d416c6f5dcd0592
MD5 0eb98e7cb9001cd0d5fbb1e174801e90
BLAKE2b-256 3a83b6b43d834eec2073660aa4ee96564d504303c8544ef2cfc66e7b7e6fbce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rsloop-0.1.24-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