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

Usage

Simple entry point:

import rsloop

async def main():
    ...

rsloop.run(main())

Install as the default asyncio event loop policy:

import asyncio
import rsloop

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

Manual loop creation also works:

import asyncio
import rsloop

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

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

Custom Async Rust Extensions

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

The public entry point is rsloop::rust_async:

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

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

Verified Surface Area

The current codebase implements these user-facing areas.

Loop lifecycle and scheduling:

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

Tasks, futures, and execution helpers:

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

I/O and networking:

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

Pipes, subprocesses, and signals:

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

Profiling:

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

Fast Streams

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

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

export RSLOOP_USE_FAST_STREAMS=0

The native fast-stream path is used only when:

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

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

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

Runtime Model

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

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

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

Current Limitations

These gaps are visible in the current implementation.

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

Build

Quick check:

cargo check

Release build and editable install:

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

Build release wheels into dist/wheels:

scripts/build-wheels.sh

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

Profiling

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

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

Then wrap the code you want to inspect:

import rsloop

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

Or manage the session manually:

import rsloop

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

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

Linux and macOS release wheels are built with profiler support enabled. Other builds still need --features profiler when built locally. The Tracy feature set is aimed at local profiling: enable, only-localhost, sampling, and flush-on-exit. The last one helps short-lived runs flush data before exit.

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.20.tar.gz (343.8 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.20-cp314-cp314t-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

rsloop-0.1.20-cp312-cp312-manylinux_2_39_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: rsloop-0.1.20.tar.gz
  • Upload date:
  • Size: 343.8 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.20.tar.gz
Algorithm Hash digest
SHA256 a19af776df8f73248ed6fa98e3ea353c8907a40d458f1026bfb946b6d1a03258
MD5 1b7d3a961e930ca6c2fbed866fedb8f8
BLAKE2b-256 71f152fc2ddfe5b83f7461f439a6ab4e3581c53c6bf1bec506fba0fc027ebfa0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 2.3 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.20-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9dfe725afb4ccd888637a590f4f36ee6cfc497965b5cff38d7e7bff4452e4aec
MD5 e479f61d46b258184c7d46bf732b834a
BLAKE2b-256 3b940459c8d3796d071772e6182b5407195b45aeaf9da46a945477ed9590a809

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b1cb0dcbd8bdc61500a37cb5b206066771a83fee07b56c874652c0b4e858d86f
MD5 eb0d485c1537123140c17d6e0cdf875a
BLAKE2b-256 f1cec94642477869618d48fdeaf20837b80a65b7aab1fce549944abdefca3a05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c1fd19ecfdc6af9e7982add6b8b13ed96b94ec7378279afbab8424fc3d1f8451
MD5 5a789bcb57fb1d1772e0f62892fe7ded
BLAKE2b-256 d8bd10fdd885879ae4cb3fd026699e3e52a668fec4081c3efeab77a054823846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 630d498f862020f45788a996cc42db3eda573058cb4884fa53a1b0f439e5119f
MD5 06c2045299dc2bc447b6caa0a9eea874
BLAKE2b-256 a226aeb0ee33e69f51eeec081a44bd8792255fa6ed8cb8f96e65b7dd3bdbd930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2327b3ca2938ff80b020293facf159801f27dff92ffd6ed4ce13dcc377626156
MD5 43b1371d765a51bfce80ec9f7e368719
BLAKE2b-256 a6120ee0b54e28dc347844c3f0a63d3f625af3d139e5ace664235a57d15a1d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 407fed9462192bcaba6fcee25c0fc4f665f14bf5f7a361f33ac9a801c6d90691
MD5 1edb4d3d420667ddd4242ad8773771a5
BLAKE2b-256 ea52184b1921650df02dbf5c6e1817baeb2d1c4865d6860fcce192e216c418fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 152b78dcb0daacc9dd743622ea0ecd27d6ea0bdf0cb261d37a2758020d9da378
MD5 ecaf704d612cd0d8627d010e72554313
BLAKE2b-256 28837e9a928f782e762b307aac75f34bc4700dc00919a91e94addf6f34e238f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e3fd791b0df1103cf440eadd382862dae4d0bc86f66bbe86b6aac7cb1e22bb0a
MD5 ee51eb6d909c9cea6e470280b94ffa54
BLAKE2b-256 cf05f3a74760373fd777732204b8a5ec758118e5156ded936443122328b85d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a6b56a7c7a62733d230104e78d4f9efdeecc643bcd4f0314014293c76312af4d
MD5 dd2175bf0bf5f0f5972030d3fa076d19
BLAKE2b-256 9e820f59290e7ac420476c13440a21a906ab7d01530c0dbd8cccac765ce55907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e0b215ecc440edd159c93a7e5e02f1eb77020eea8271d1d46dc8f4eac29d9247
MD5 d1e36fea444c0f89775b6416b449907d
BLAKE2b-256 7f35cf4c0fd9277d35a8da00094bec50587dea14c903eb99b1bb394ce65f43dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0a8e05a9e60dc4c06046b211b45dfe2657789a3d289f92fa5702fb065875d31
MD5 a17914e1be34770c9cde4609a6d89781
BLAKE2b-256 875149ccf91cd4db50bc5752bab48bad8e00c49d15e406c83019d98ee0083c82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c26793717494aa3ad26bbbcdc1a34e44b3191c6ca57de57146286b5949cce75
MD5 ba45d75553cc02975aa879dcf86f55a3
BLAKE2b-256 27866748971d4616b07cc1dde17aa55d8957c7c2301fe13f74b225d27a977928

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 946d4b8d7f9047d5c3d39accca22cf2eaf8a2b8ca93b3ad1367b4fbeaaf5bb65
MD5 eb62697d61a7803363578212a154d0be
BLAKE2b-256 748ecf7eca3d5277119efb9fca8eec896e81ab88909af658abedc936e6badd35

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f8c2ed2a4870fe5497456e821de1d229dc5cb92c598bcfb7aafc10faf5ed633
MD5 16c01a81c7f1e87dfbfaeeee55c49831
BLAKE2b-256 9306fe2034814eac96257538b82c222edffcb6668ae2af3ad91ef27b956825ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 0b02ea3ab2f3a1e682b4e6790040323dfd15b0c31d204be09801d998f9fdb25b
MD5 3d96df24f7efe1a53ff26c56f986f22d
BLAKE2b-256 2dc4baa8a8419dca7664e620818096a25564bb85a32cc76441ca898e14648f58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 204c7dbd26e95a49758e754927fa909b099cbffae3b288c7353a0f59fd25a7f3
MD5 03bdb9d82f75f8d0a73a6bc29ac7f42f
BLAKE2b-256 749dbdefcbd9d92cc5522e0d9bf05d5957029785e06e49ec3ed3439b5ce33879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03fe371abe60d93f275bc37cc2df84e49f736443b2b50588ecfa9570933db2f1
MD5 3453d9b6d8469aab3b303a3420544028
BLAKE2b-256 c21e033af63db453b93179151e8ede8567d36e56a255c185055b470cd4d3132c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2d495bf061ed0b36854c9d2dd693ed109c7bf8c9cfc124dc79babe987291e44
MD5 4d1c1f8ce458b8703f288106b9e4d375
BLAKE2b-256 db6cbc7f67a2f1e0c1f72dcc67d5b22d6b67cf254d00a5d6903b1b43e60652f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 dac3a1ac7206fd5def8d2ceccdb759489b6f1e04635afc78447025ad916bb8d7
MD5 3b4415f792d4c087317e144d7e8883b4
BLAKE2b-256 4d999cdb57f8a80047189f0e266b93a0a6e887da0bc9b49e385111800635be45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0de41dbbec91e14a992c63c3ad2120500922af13d7c1c699c7174b76a6d1b779
MD5 08900bf7f42f8ae2ca969710c44de1dc
BLAKE2b-256 3ce72d26111b0371276e5e7310199b62862c9076f5c3c8c61060c13345764e7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 931105aa97f86f236a95b7cb1ef6be540477cd9709b1e67757dc2333e518a3cb
MD5 b71dfa72f5eaf5f98b94ffcbc3684bd9
BLAKE2b-256 86ac7da5ddff6c8715a002c82f935e2f03f8f2f4e4a64a5ad1cb5e136c21a039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 594c4492b38764d3ec18703ff7fb942a5607df75e76136b16afa8663c5f97eb0
MD5 a4ff7645e858802b7619cf9d4a3e6e93
BLAKE2b-256 5833834dbd9186c88f108d1ed8258dd3cf788cfac7266537653f30a7ff7cd1f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 200a237296ecb2b0b9e0b359b3a24dfaea510659fe6e5338c0b56b4fbb24d8bb
MD5 f0445d6f942fcc0150d65601a1562265
BLAKE2b-256 4088403040502b08b9d28db65cab48fbc5a11a849c7a2b621ab09f073692f4f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd0ed789ec02cae47e62632c81547a1b3bf44ce26c9ff6327fb85be14910150d
MD5 37b3e54d6d7db281abda5fb843fa5869
BLAKE2b-256 e6fd0c68ba68b27cd74ebeb7130ecc4bc92ce4bf968a38a621d2eaa632356921

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 19f07c634e2ef09859d90e1216593e72936919a6d890c88aae36e90ddef604af
MD5 21a9f34982dff8163e421c4dc6233147
BLAKE2b-256 64bb78e34bbf815b31f29bf9fb58968aad19110b08b011fa034ff6b661d0bcb5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 611d9016d08a70adefb8c04a3853a6a824a25419b6e849c20714fd2ae026eab3
MD5 7c2b1e7c6bf5ef068e10c7e1533c7bd6
BLAKE2b-256 7841f2b05cd5388942c26c3ef1db9f2f12d5f8e0b0b3b388874f7db52bf5465f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b5102d50e569452903c734b932aa9e8d46ab23262b34d792253c5b7cd3d4269b
MD5 522b3ff3aae2bb7983375a12f1281a8c
BLAKE2b-256 ee83613e9c6b0c8804d4b125d739b75c545d267803784a50a4656698c36c5ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 bea881321fc0cbe9881c8119ea8d85813406b9eb94917c18328b170b9d5b846e
MD5 74b0c61b537af370cd820a2a1289a162
BLAKE2b-256 59cd64f2b44d2e25c8ea636594c0fd7e4a85a4559a8bdc83f0702f3d0af8e88a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 498b533443feaef0eb50f6703a82ab02fa1e9195ce899f367ddaa6020f0ab4f5
MD5 b1b7c04b4215296fb19386289cc71b4f
BLAKE2b-256 05736ae3358a42be96256fb55b8078bd4a511af15954dd4f1a1ae89dc1501117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b6154ca189b1112c1f4e4d17af3d2a15d5d4bd72f2909f9ad9c466a258f6f01
MD5 80052c98f0b212c10bc909ef52ee6a84
BLAKE2b-256 3c1dd5cb5eae720e494d843e4d1000ed449535a097f443fdd2e795e2d0b80956

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8ce57f49aeaacaadf213693aef7a329418d980a60ba9d4f60cfd90fe4e71a58
MD5 19c6a39f09916daf7085860a2c2295cd
BLAKE2b-256 caaaab9c8af7463a48ece8670b82743a12a680a2b2aea04fdfd8f8a5441792af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 40a184c22397f790e1ad0ae7d1f1bf308f3f6ba9844fc20649635c75a00487a7
MD5 6be43a2a7ea448ec3ff8fa038a48a506
BLAKE2b-256 5c90ef8a17e0ae890e66027e7089c2e31817f41b0ddfd03a14e3c70ab8b1e1d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e2ea5342bce94c1623de5187f2df22958cacbfd11f0a08ce40e4e68c9236849c
MD5 02f36d8dd67b134eef5778b43c60c52f
BLAKE2b-256 0379d46ead3b4f04ab9768294b73d44a58709858a615c626742fd656c3c5bf10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc72313b10f3ba3ab0d481de5e491119d37059666dcf355898b9bbd64eb04a18
MD5 1b8a282c077ad11842266eead34c8b99
BLAKE2b-256 673a32eb42f63881b0c8a80202dc40dbc62737a962ab174cde338edba9f00797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 670cd984c12ef4c9fd3d04755206e4517206798fe38fdc15db5f4970f49e07a6
MD5 a4b8b86222d0373812a74dd2fbe680b8
BLAKE2b-256 820cf80784baffbd9b672ae210e9f4df594e667ac5cb535b35f46665119650b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 434d99da60fb2562bbd973f41179fbd425924af9a3ab1fbf1dc752264ec0efbe
MD5 4647ecc2b48ed9dcc4b77173cbc7f076
BLAKE2b-256 49effcda17964c651a725fbfd9d0462f3da54c2019cfa892969117238cea1885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a56fb2275ad88b7e634789fed372daeb2d90cd9d5701d4b51a4001cc25e1b43d
MD5 4d163d48a1d3fd7fdb8c89464d23ae32
BLAKE2b-256 f1ce4691dfc5c237dd36627b55657033b6b0e7f1063d2e8a96cd965c6d94b9a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6bb8078f04b1b91f131f4e5556d83216e4c991079798a1206881d2cb379f18a2
MD5 cb64a18704c035b09aae90196b65d955
BLAKE2b-256 af544e7d67bc44af93b8e11388ae2fb76e18e15915100fc39b1a5b53fb0d4c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e86011657102a640dba4c586d0135458d7239f1bd1d2e5012643d25e3355ea75
MD5 5fdd9bc3a6b0276537fc3cd64ba9e0e0
BLAKE2b-256 79372fe54ab931a97585fbf51989f5a45b8f6dbc0fc80a6a7ac1b3cdcaaf34f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1cde2542306d39411f84d7cd3f968af7ac151f85ff106c9976905a7d7176309
MD5 632e1da08f5d454481ba72af7ac17a23
BLAKE2b-256 ff80acd698b85191a46ffb454a9e2085d0e1478b64a28e9dc6f2c2d1c641d506

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.20-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.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8da6902b89a60cddd5c145f78b1a57c5532daba245f6765078cadb2d967e7341
MD5 c435498ecba990084ac8e0d599c05270
BLAKE2b-256 e6adaee5aa3eb1ca9848a8b0298d90eb9a719e0bfe170779a4bb3c95c2f44712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4415867c5e5b8b61def57b42ca135d9d58c50267ff318a233eeb439f308e8605
MD5 4d153a483dbf647a7326860e530c5f60
BLAKE2b-256 8a87bf12bafcd7447af5922a89d4c085a025ec4db59ee0a297a2fba314af09c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 36fc816099dd172e578bd8a947e97a4b80defc556e3ff22cc61754619ea76dd3
MD5 c8ebc689102088276c61860b0b7e9e20
BLAKE2b-256 51e04557e18e81434f4422071c7728e14c014a0fee01655bd9708753c5bae951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 742b6937ee864ecd62eff768de0696e71cd95e40570fbf732ddb9855a0ad9af9
MD5 938b46e24bf7fc8ae5a926c6d505c06d
BLAKE2b-256 17f2104a9817d99fc9153eb577628c881433a52faa134ef39955a0443eac4a38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.20-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1aa53bbbe7b9c72d291d88f90ce75e7c2cbcaa0e9ca39a882887b88728cf92a4
MD5 df6dbbc82644eb01d496c55054fb2571
BLAKE2b-256 0cd0a23fe90ee551d252829d60533e2be3f7e29556cec5666fd0d3c908715b3d

See more details on using hashes here.

Provenance

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