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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

rsloop-0.1.23-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.23-cp314-cp314t-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

rsloop-0.1.23-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.23-cp314-cp314-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

rsloop-0.1.23-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.23-cp313-cp313-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

rsloop-0.1.23-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.23-cp312-cp312-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

rsloop-0.1.23-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.23-cp311-cp311-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rsloop-0.1.23-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.23-cp310-cp310-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

rsloop-0.1.23-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.23-cp39-cp39-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

rsloop-0.1.23-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.23-cp38-cp38-manylinux_2_39_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.23-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.23.tar.gz.

File metadata

  • Download URL: rsloop-0.1.23.tar.gz
  • Upload date:
  • Size: 675.5 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.23.tar.gz
Algorithm Hash digest
SHA256 97a4987c2c6fc8216cd57488d31f2eb4e8e5a1e7b8def7a4cc5bbd61e3870cf3
MD5 2d90859338e8f0ac14804bfc51e550cf
BLAKE2b-256 b9a8b88ea84a26936e75508da47152bc935faff85814669b820ae783d01194e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c2c25d38ca62476ff6172eb7fac216872231adf7f9a1b59397842a17b60ff1d2
MD5 931910b8bb3b236bfc27eaa1caa0b48d
BLAKE2b-256 067e6c9ab6637ca7b83b3a9572f6d8c213a6f717184cf0fe03d63e3cbc9a41e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d8ef429cb01c7ec578af5a9b93e78fac8e57c4035dd596c7b362de2160c5ecad
MD5 99deb759ca5ecf125ac19ec5696769ce
BLAKE2b-256 41c88b613f221095dc2dd67001e024c3ce5ae7dd6b49a38a3ce979e32e9e727b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 409bdbadcf30ac76f719af4ed13f0393074314e2531c311e5c22373b93d8f141
MD5 083f4de986ca66ec7f96c599648a31b4
BLAKE2b-256 373ef285e695ea660075b722703fba4980f422bbfe7e7ca812b0f6408d3a1ec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 552940fdaee7738a6d3d83418c16a0bbed0a706e705518f685f3b56b593f1255
MD5 26a1486d581aef2ae143080123739d9f
BLAKE2b-256 5b3f27526ce09c215597fe7e17e7904e06196b45db795bb9f3d2d4bbe2094b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39ab3002fb011b22d3aa3584c7898f42ffdef2779e7744b12697b5a16c66bdb4
MD5 9a7d2c1e4e1514cd84760bdc984f5da5
BLAKE2b-256 0e6100367ece9306c5eecf055d45f4b4d677b88b903a73eb359ef4f2af0a64bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1becb51624daa945b537c60127a8b3ace6ffd4cbc4ecb19caf9dae92b3c80dd
MD5 958edca9100a72a05441eb57ec29861f
BLAKE2b-256 59e8149feac0e54a3f67f9ba5b1a1265d0669eb66f737940f2f0e11f44c05c36

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ddeb6d48d9f80f86084ced8056dab8aae0ed8b756bff83585a2df9fba15a9320
MD5 b259e2497e75bb7b4afc0584df1bfb39
BLAKE2b-256 4ab17d5ef50b511c11ec71077fb90a52b5d2f622bd1dd2d4d681e9c22c88a9c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0576c241f540bd784cff7d7bedaa7c5156e64cdb8aa388288cc996ed72d312ac
MD5 5982138698039e5f717cf9a9dc09ee68
BLAKE2b-256 9637f8bc9df4404b486960bd4556104734f86f3b45fab83189278029938ac13d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 d5b06619d6e8303abb469e4cbc93da30fa3a2f4797e38f7a6cd56f8909f7d603
MD5 efe158feec898627b20ba866586411ec
BLAKE2b-256 2edd19536c976800ded7b2883f31293ed04f9493baaa6a0c0fbfb6d262d6b3f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5bd44ca2cb596ec384ee76aaa025200ab825213d36cf96c92b505d0a0d89a742
MD5 a8992485d180b3b20f7196b2c149e0fe
BLAKE2b-256 c04ec3cc88e93412d78981e2b967291df1d74fffeaa47460ea2526bcbbfd8389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e69ce54e56a296497504a64554b52f459698eb8e2677422eb4e45650fcf62478
MD5 469135ac66a1dff829c02623e7d45aa8
BLAKE2b-256 db4e9173023232cbb27e57275530c4b092b08b2d42f7fe12034e7cf69c7575df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce1140a6ed297669c6cf48e5ac41ea45a35a36007b14ad85fdeea2ff948b5851
MD5 d9b3bde48c9ca1a264a5dd6c2d91d649
BLAKE2b-256 51b943258ec7997f7d14817d2e37f657c0ba15cf5288882187de4c4657303bed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1ebaf988a941fdd9af8744ebccb4075cb1e974972544e0b9095479e62cf058ae
MD5 4a89e3e0ab479e9561a9325fc1fcac6d
BLAKE2b-256 0c5267efd9e2be7859ea7b1fa2e61691d8498bf06817f19e7d42982f3e55aed0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c4cbe9eb909863258fcc5c2499f24763f2c13088549eb7b28d2bfc1fdc47d2e2
MD5 de33fb9ea5e9e98dc283f7777c002b2c
BLAKE2b-256 9c72eeeb8bae783fa9d2b0f75d24f6621f2b6ec33a31b5268352a6c3fa1eb669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 23f53d3479b25567c136c0e8b750c959c2bfb22c5b7b0db92572527cd89bbd51
MD5 c3a19d69b8dab42e9e3a5f27216f78cd
BLAKE2b-256 ab6525fcdaf1e203fc186272f3782f0137300369a61d0647c359378d380e7540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 576e64db7f69c451df01cb831f6268b16d0abcf6672d4a71dfacd6e6c9dc299f
MD5 60467ba5b8e981014d453e2033bc9615
BLAKE2b-256 90b78cbe94a79c697c062f45ecbdcd7ca58dfbdfa280696f3f7169bd3b7c06ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e46b5263ea25b3d4dcc95f734d4b612cf86df261b069697854d08ba163f312e5
MD5 98081d4681d1090106c699f4f2457038
BLAKE2b-256 b32a9a8bef0709fb1f815db2dea008f41d1c6f29a03a54d7b5b4b386e4c05448

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ab521fcf80cf07961c1b150f914409d75b59b023b52b6b197c8ce3a1e5e965a
MD5 4ab5d3f6a61ae73957f1d2e2ae47bb76
BLAKE2b-256 e525babe07d39c639699a30967220423110ebbb78960ac107f6638267283b101

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d0e12fe08ac3ebd5966b6bc0e2684846937cde736423b17124abd95d7fdf4af4
MD5 a45a2a5099fbb9b5c572601bee5e4c3f
BLAKE2b-256 5781be0e4b0dd7face82f102d27d4c3df930bab757afe502ff0fd33918d5f434

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2eea42035f3c12ad5172c7075d0f6bbd29904af4a743ab52eee9e01745ea0cb1
MD5 9bf7ded2a2c20e6e6c1620d42d5feb23
BLAKE2b-256 60ae74aa4d1e4264aecf04367cfef8d559d8c6b3de20eb0a412ce9a243c7a43c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 13ca2974cecc0f18bbb83cfef20a33506aa56c8c3b476861cdd653370ed2f671
MD5 ea24edda60d1bf1fb64d76e60192857a
BLAKE2b-256 1cc7eb1e8044de515d4cda5dd10d49e69b2e5f2412d2f0fa269e01f66eacae7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0719497b392f4967fa618c7d6e25c99825bd78a5f73a087c724390cc6fe4b44b
MD5 466d10fcc908fcfd9dc4acb857c42188
BLAKE2b-256 f79885b36cc74b8f736f51fb90a878702f723267681feffc51381e2424f31c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7660552ad16c8b6b989c0e07457bcbbccfde650cb2112e8a1d38fa0f67f15a10
MD5 6be7252b5acd4ddb85405f8f36b55453
BLAKE2b-256 57386a83af9043f317494b72fa5e0f85dbb461609ee371f4446146c98520f6eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2457f515be5e6a2f86ab762871b1d1ee8908a5df58199d8f976536deeaffa094
MD5 0958d0110377ac1c0fa244bd42a59a74
BLAKE2b-256 04d2d4bf2fcafb366f4e114769ff5c68b0206c1a550996c5f401b7a0a849eb04

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5d7b5741f7c5f775a4c8bb02dda8651d2f0edf06fc9286813d17b3e1f93c92da
MD5 74de954f6c041c57cc98e4c7030cf0df
BLAKE2b-256 954fb5bd168683177ef33bdc49e73166ca4bd9f2d192e955a90257195307324d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 829565b83fe93ac321825894078c425bcfb3e8ab5015ec71de67882f06152acc
MD5 d932b14c29396978574d04845b4f59bb
BLAKE2b-256 6607dbb2c15cf7a05543bd2eb8f1c2af30c9531f8310387ded2a2c0a1cd9de56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e580fc6e839af875bd7afc43370914c42ea66cc2a5235a3826d8c0252b02e5e9
MD5 b941947a268c624e33140922cc17ccc3
BLAKE2b-256 f2f8d7b25dd894ef926a5d2263f324d8f45e810f762f750a29ce315d1cf49133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b7a288d38a36445b85d4df70a6c626188bfca201eb465055c3c2afd21457023c
MD5 c726007a285367d75d00e48b6a894d0a
BLAKE2b-256 794f2a201f7b4e02774a1d60e849f92892a750080c422d7f3eecf2a738793c2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2e320e92a3998106820387258319bf13822a56dc86607d1a95dcbc972fa8cfb
MD5 2041ba98306eb8a4555ff556160307d1
BLAKE2b-256 1ef5a1892d7820a521347db73852d20623c9fa076644ab6fa9036400c0ecd7e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13668d9a8e65d8ca0b163b9f5a8398a98dd27212d00430df521f4f973e8128cf
MD5 b9f5be55f7ac7fe1f3bf7a70e8bf2e09
BLAKE2b-256 849b941c9776857df0d9ed2b029606e23a14a5aa30f083fbb9af9f4309575624

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d4f3684a5cf3a79ce987513f26f6c67fb3ad52445c686bedab44051094025ef9
MD5 04b29be65eb7fa6c4bb85891841ee7ea
BLAKE2b-256 282343a513c6e1c9afa84f08aab560185b9a86b8b5e5c580d872055a29fc6ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5f7fbe32946579e50356353da5d51c596506353d611e037f61f1b1c9ec91f9f7
MD5 99836b97010b14e8f53a65bb6d09cb65
BLAKE2b-256 2465bcc25799d54ab0108db5d1eb96c5d09dfe59749a8b0be619e74ade802528

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 931c5d6ed5876db6dadd1a24d9e237c7a2f47b68809a5589a389d51ab8c5f00a
MD5 b18b1a12ae516e6108ab14d50192f428
BLAKE2b-256 64b77ffce0130e35acf82b5483886825c8b987cecacb011454d3005a757407e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91ac7394af37b2aab2cb5227742220fbb9c8b10af2d565bf8bcd0dd5cdd9b521
MD5 0469d3e44db725034f245e915bcdfeee
BLAKE2b-256 df48323b99ccb5377ce92818ce05fadbb1d01dbf46055ac918ce231a370926f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb1d9f481e234928e7c912965717868e91c32a65cea5070936c00cf36739cc1b
MD5 b6e29179b4e48e1b81e2a9d4200fc879
BLAKE2b-256 2e0a593d6c0b7384af2a77d32f56f84c4fc31dd44e1b605dd32f52fc0eea453b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b64c2dbed34fbda8b1ba84945d0b3f233413f678e306594fb449a0e21076c876
MD5 b95c54b98a227d8487ef21abbefb341e
BLAKE2b-256 387d2c911cf4243cbadff1bafa96478d92995ac207f95973c036adc329a3d47e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6d44543ab34980dd9a369df2780a7631adb01debfd100be50fff1ffbe5de1607
MD5 95511479e562c338712b7129f4239648
BLAKE2b-256 7e89ff1654b7bc4348d6a04d4c3f6c78ae63d1be2dfd0513ae4ca4b7fc67ad9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0df2f5c62cc378d38d8c08e796d25d17c73696f62812fc7dc6ca32c174849c9d
MD5 9d7f77c0ba317f1c7ffdb727714675b1
BLAKE2b-256 c566b1a9af37229c111835349566f6e8e392acfbc2a34d3f3929bfb3b65a4ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5598e30b00cace8a69f5d506d24f7e23f5ef7839682bbe6aaa3037f118676716
MD5 afb7ec32bb1315023759120496329f70
BLAKE2b-256 15da096e61f11628c89f00cb3c055fca488feac8ca70cb02ed9ccbd84043a20f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15a35271a481c8d2bad94724c532d49deba5ab7fee9278fccb5ae820d4fc0b16
MD5 08ff6628f71b526d959789ee216d4464
BLAKE2b-256 c865bba5550811226c932c36db02f19a31587c5593aa74c04674037243c5aa87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.23-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.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e0b99108cbaf35589de68911b6fdf2f92b065b8b371c94d168b5fc9d7e1ed117
MD5 81c6c85040882e6933ab63fb47401bca
BLAKE2b-256 a4e56c45ed6bcac8901580556dbb9e7d58f3063f4c2f5cc2b6eee2e885f3684d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a2c909b21bc6583093c07b2c4a5c821fa83c094fa23eabb6865c35cdbb9b1c30
MD5 2fa31df48b45fa061235747552bfc2d3
BLAKE2b-256 c0c9a1ca19729a471e56498cccb9640d7d82cf11a7b80ad8cef759b8606ef563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3517203147293f5d883775d82b297c30bfea5fea31931f2f2cc3e16d6dbdba01
MD5 44cb51edbe64d9ef45197c7fd456069d
BLAKE2b-256 662dd951030a2affc11adb9ccf0542a5584d8682ea0e48edfd5c514b20770818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74c8cd29edf63504213822ffc13919b80d43c6379fc4db2a5766c11507631cb2
MD5 044a4aa47c90118de841c48b48cc926b
BLAKE2b-256 f5668e796258037bcf0c5a0463bb9f8c240e94aa931e261e46ef955a447bfef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.23-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34bfdef750f7386e5f4e1b6e1446a02786c4f728e88d1e25bcb4c89f094efbf0
MD5 ab94d3d352784ec9179a8d2f0457bb0e
BLAKE2b-256 24fdce0da9297a0150bf54f158c34b1370462e58babc29575807586d1e75fd44

See more details on using hashes here.

Provenance

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