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 macOS (arm64) with CPython 3.14:

callbacks (200,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.033083     0.032710      6,045,401     67.5 MiB        1.00x
uvloop         0.040958     0.040721      4,883,026     72.8 MiB        1.24x
asyncio        0.082233     0.082093      2,432,114     65.3 MiB        2.49x

tasks (50,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.063593     0.063286        786,247     37.6 MiB        1.00x
uvloop         0.069614     0.069420        718,251     38.4 MiB        1.09x
asyncio        0.108114     0.107502        462,473     36.1 MiB        1.70x

tcp_streams (5,000 ops)
loop           median_s       best_s      ops_per_s     peak_rss   vs_fastest
rsloop         0.090940     0.083355         54,981     32.2 MiB        1.00x
uvloop         0.133182     0.127404         37,543     31.5 MiB        1.46x
asyncio        0.302337     0.299813         16,538     29.6 MiB        3.32x

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.26-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.26.tar.gz.

File metadata

  • Download URL: rsloop-0.1.26.tar.gz
  • Upload date:
  • Size: 686.6 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.26.tar.gz
Algorithm Hash digest
SHA256 36aa4950245e076fc7cc324758a3628fd7d05c097e029f4239d67b19aa4fd4fd
MD5 1c1231efd3aa07d7393a35eaaf249ad7
BLAKE2b-256 ebcd05eb4d60de69c0fc047fd5f012903674769998c1db7189a36594a8a66a23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9c88ef7d059171c323b92115a4f9f7f63cf957cc13440a6729e0d97cf55418af
MD5 db9253a7b12ca7052df0c330c7fdcd46
BLAKE2b-256 ef2f4cdc2160341856438d30929b1a4a91880209a5e53c91a417793aa8aeb360

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 701fd8afc237d20e15af543691492db1e0b4b2af3e5aeb8c5d419bc110fb127d
MD5 2d193af0b325ac54e351b974068ca6b7
BLAKE2b-256 8672e4ce9420e8d273c53dd5aedabdb2910b79261b1964eda30fa07658c85305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4edb8d36fe710412fd1bdbf8380b77ca44567f6056b41e43cc8acd97bef184ca
MD5 852bed8f8c2f3d944b8fb8cb713ab4e2
BLAKE2b-256 0be1da5ba454904a9e09ebb759f98fbbb02b4997d32761bdfbd4896b5f68fc53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a82195185c19248adf74f8b365f8b7b5778b0182bc28c746eff1ff0d4ac852d6
MD5 5156d4abc201f416c94282c32876b95c
BLAKE2b-256 1b7cefe741e3cda423f70f88f8b6d3f850f6bcc06980cbd16640d1531946e295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f36796cf542a22112119b91d15cd08bf29463ef5855f4a0eba87365c58d9549c
MD5 2f51826feaccf4cbefcfe575a978f209
BLAKE2b-256 956b67aa46e2bf0e31a18b8b5c83bb2999afa612d79c6fd3523b1064e1b32e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 545ee672f7b00de7e78690af0b4b7254525936528fa71c74862df9ad7c473b7a
MD5 cd72742aad920b127716410a9aed2b94
BLAKE2b-256 a23bf8c5af31a22e35a7819e403c9fc4cf97c3d9eae3eb8edde03e39551a9620

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2c440961b457df17c7287d81ecb6a2987f9204e06f01b31f48a85f47ed75e218
MD5 51190aa46de0394f453dfb235bf0beca
BLAKE2b-256 a7c0e766cb0b8f89daea28268eeb66cba66054357f136d3b47b8a5322e9867ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 19c699b7506cd06c4d5ed450f7a621da4054028cf9d4853e9e11bccfb2548ec8
MD5 e729f9c0261b38ba34546080189b4d69
BLAKE2b-256 f73aa04d0aff4641de27afec72748c80acb7da8eac1af2e26e3838167a3ef3b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 335f7144c7079edb2b3eb252d150fadee297bc4c15b302c46860457725403728
MD5 294c4ef9e69ad29598217d3ae42d80cb
BLAKE2b-256 3b8db8d1ac7f7ddb21c4ad1625131f09e293265c6fed6b65495d7297af05c68f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 cf90c45cba303f49378faf1ef378fc08483d3a640e1fd8d588ad252441ee12ea
MD5 a84f536ffc5eacd08a64269d5f2ef15e
BLAKE2b-256 032745836318ddce6756cc13fa7a17014ca7eadadb9e1dd31c82edd03f39ae47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8cfb582e26720283c37d87ba4c27f4f5b8e70d2ac0d4aa63a4c59b55a98182a
MD5 1823fc861deb7f42546d65343806172d
BLAKE2b-256 caa4a6977b800a387d99ac947e9a9d31b579b93e5c4b762ddb1edc288bba0182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b30bb36d3a5f045493028acee34d0cc67caf7fcbaf6f27e4283251f834f19f2
MD5 99129579315f948038cb882d5e6cc0e6
BLAKE2b-256 f7b5babae4486d9561463c6e56d1590ec8bbd18ae8ff1af04ab4de3fb36f6cd9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 28d02095c56fad6bfc3afda115c57a51a412bcb217671dd1270665d28f977918
MD5 6716a0d4fbeae35fef1db874bdd82217
BLAKE2b-256 0e468c0ba04857408705e8fff34e2461a09d1044455bfdddfbe3457d1cc76d97

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c63a491a1fa93e0f3fb03392e5e0edcae4d60d25a3c60438195244f2aec0fa5
MD5 3d5d1b0610378544a1f346d827f8819f
BLAKE2b-256 66bcbc8aa69f9c54ea738cb9cf04e655d7951e4b8454a7decb7a27e03c54589f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f329f35e6469e8f39eea948bb73330c3932ddd58004887730c01a0d3ec2afa07
MD5 0d7e77c2daed28df0041d398d804bd0a
BLAKE2b-256 c6cc24e8aa0306570e4dfd0ca45f628d7399ea7a96d3d39b474226032b05978c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6457fe457313822b589ee377f24d366e637850901614e62e0dc06cac4aee5d71
MD5 25097d74592c913dcfa984cea5437706
BLAKE2b-256 77e21d609c1d6e7a1238c43b90acae1cf9b1928e1ba6b7024022f2d0200c8352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d967c52c5f35a694d4a5650bb98baffbed8e98905166b6275e625cc6fda711f5
MD5 bab92f1bb2c4064e419ee73ddf04cc4c
BLAKE2b-256 6274e54e2c45e73617cb064df64782738e494e9f63d3539a12d6f6ae233c6526

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5d942b8003049a8df8842bb381761edafbaa3eb0d808a6998f9805738447b88
MD5 3a72e8b92ab8fbe61d7dce2e56f205ae
BLAKE2b-256 f0a9d3cab8b417c019fcaa06f6524b1757ccfef09675915811a2cb1966b8458a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8809ab83e1090ef41be9f86d83470ac71eb57a430779612c572141e1bd3fa7d3
MD5 9a077cde169097029cba9b72babf8633
BLAKE2b-256 6c43ead6a1d7db879b4df53081bac09ed1e0614cc1a5ee664333411a20eaf7cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a722c0c469b22e23dc7491aa512b0737b07ff09f08ea3bb613bc99f620cb0738
MD5 f444fd9b90a58da1c8fa46f013b55142
BLAKE2b-256 2f7b7c1bdcf3734a90b8aff8d0262b49f6dc06d5f5819702804012935addf041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b501e776a0b462a4ef047005a45d2c55033ffbe2871991442b91abf8ec43ef80
MD5 d85832bad3692ef13e3c6d56fd4958b9
BLAKE2b-256 e4fe1ccb3315daa0770ec99923496292026189f422a3e26258c49813ca69b316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 bb2570f0475bc365ea4d96057d96a26b6547fbafac8b246e7f3ff7186eedaec3
MD5 a2265c5767cfa3fe0993e54d6ed961ab
BLAKE2b-256 7ef3baf0a5106d6414129f3c117a4b8e6aed3ef2a8dcda2c2138750629c6a928

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01d65e337198c61622d802117ace9c2ecece8ff5a9164e9cf6fde3388fea1866
MD5 937e3397430a2d0a2a4aaeda15e2fd46
BLAKE2b-256 fd613f298f6c3647a05292e7031f6b6cbe3e011d94424483fecc8d7c21f2eb8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78661e6c3065552b4f83d4818f85e65e3bbcd2db2ea8c8d9862b1070e42656f8
MD5 de3cc084f214ed40e0b341bfc0cc1592
BLAKE2b-256 819836a5ce14693bce8829e38f3cfcc62994531e49d8b998aaae96a388f3e727

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 24d8955a333c497a9a230ac764b981929adc4cf0bc419302716a3b90c3f51c09
MD5 3959bce42a40be71639bf09afc15e93b
BLAKE2b-256 a713ef97e56ec2f2561b9a3d9e9c9db46054ca291917312ad7e68c980b1492a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c742f3f90f6ca0bec7691c428e516cd7a8e15dcef9ede11b4a609025a5995c8a
MD5 f2b6bffe32c35841786880f53874b486
BLAKE2b-256 1eaf56a3341715551f110f8c392bf57e819a4b31866e0b063ee25dec4979576e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 eee821a78dfb5c90999e90ff44f75066ba05b1c16a23de18621a9ffdb12f2465
MD5 57b9bf864ccc0d4f8b18f91ea635002b
BLAKE2b-256 d0dbbabe5657c0a178384800d8c99a31b1ff41bb13d53b868e8879b62f4126f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6589a2a81d194fe5d61858e64b81e141335d87ae0d321f13d90df61e7f006ea7
MD5 85acfc324a9d617aa0ceb7e69b1b502d
BLAKE2b-256 9a797b4d09363844808af781490769de1c22b665d16a8aa2e9213cd6f97da599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6645097198d097261619439620a6d5f200f81f01295cd7d184074f45a4681683
MD5 441b59b41dd2957f5dc6f5dd296f5a32
BLAKE2b-256 62cab28057d55efbfd3613c64ee1a108a7510da80e6afd928b38f2fe40bc33ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0cb5a78b2703cbd7b99a5ab513733e15a2bd480d6107bcc539606dc7bd2b4cef
MD5 69648c980ac142a1809882e105d0065d
BLAKE2b-256 61d50a6ec7b835e5720a4f2073a16eac6bac7d691100f5d594acc8086df52df5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 80b4df61cdde6be626b8fde35a1cea8f2b93757d7c62f6e78a002b63943e00d3
MD5 b9d649c6c653e4efcd15c88b90f5d52b
BLAKE2b-256 9bbcaaf01a790a12d33ec00b00b143488c58e5b474f077f3cc9ff9146aaba7b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 43251baba731d13e9d2f4e517453a5b98e4e513b03ae205ed5dd9b9adf1ff7f5
MD5 468a41ee422e705668dfb470f6f0406b
BLAKE2b-256 6a857d362fb85323555ad8be3ca729e63fc1603efbf99e3371ee135303352edd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 77b0b6dea9179e90ee7cea91b60760f240a4b8cc7f1b2273b463aa3bfa04969f
MD5 b5485417f6b52089a268fe3bcc1c2eca
BLAKE2b-256 0b232fa3214ffa06fb22edc5a4f2261f7feecbe9c1a45791e7c62813ecb5a11c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d044cf56cb4dcd9d147d6d20b90a5f07905a3e989c6e6cf7e19246943b2224de
MD5 4549737cb42e7b4771ec881f34242874
BLAKE2b-256 b88fcdb2edddd55347904b7203dd87d084adebf7eb311d03242994cda41f0a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8e256b15a49a8837ca41fbfbeed47e7de3d3527c54a79d0717330ebadcdf721
MD5 8fc0aaf8a71f9ae7db08467bc6cb2b5a
BLAKE2b-256 e9ce899164a080b73314c4d6f1dca9bc3be80412fda0b4116b4f24930a5e2fab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d4229e085c86d40dea19c5da9d42fb8f242f1543203761b682baae09ed01b13d
MD5 ad8ed8e286ae15a61297f7ff824c3294
BLAKE2b-256 484cd2da14e1613b9fa040f75a600dc91c96983ab6a6d6114dc4d39724360508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 00004a63ec7ab02c2d44ca68e3aa614f21066fcd0c7384af5c963a1cab991ced
MD5 264da8f7dc45e4788faf35dd3883e411
BLAKE2b-256 66e76245f07ae115806b8b3262c095c77768890149e2376e83660426a215fb8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 01a713c65d3dbf2b038e59347879c191f3a077ec19a955f8a7647fb37a4d1b8d
MD5 84cc89e7dcb310fd826e311066861f89
BLAKE2b-256 15df71e50c09324220798d70cb9a3e1abee654d2e4d6f108e488ecaaa0155bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ebbc09cc4ceabe266ad24dd32beacbe6fed3c504c3ec094d64a1e4933b3b215
MD5 b3215af88a99ea085d3ee24d3b58043a
BLAKE2b-256 bf010055c962dce0c7236dcbc3bf25db78581da69ae9452adc33e59d49c752c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d1b69207e6acc770f70f4a5e9d161b4dc319fd26872185b168090c8464e1076
MD5 aa9d07ebdb99adfe9c56edfbe67e9f52
BLAKE2b-256 1cf8ef7beaa8904a9a68e937b95c7e756cd56025030f3f3470d945e0d81e5bf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.26-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.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2ee22c6524df3e4f9035fd22d44cdc578775aa14d6c0e96f9ac6b06540002617
MD5 0c279bc58e231a724a01c4eb6dfd427e
BLAKE2b-256 bba71880dcbc9ef2bdecf49febc1ffa427f7046e52f4fabe7b4ec754a464dd9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 8a747ee0f6ee5611d00ee64c6d5cd9942d6a9be8569a21292f07b01b34aa843d
MD5 cadafd91d780f804b575d8bf465a2627
BLAKE2b-256 8d606b8db4b411f74d7e11e4ec31be38ca5533cc3251d950e2b1c036caed0848

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6cdd25f9d83d0fa28870ca911c666d8687ba7821838f40f959a139c4c4786eda
MD5 d531db082f3b09e10850d47eea9853c4
BLAKE2b-256 78ae02f67e767624fea2eacd5d6974676ce0316c3e6befba39e7f34d00ccf914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2a1097b1a1bd7e6c3663356ecd16cf5e072589eaa2ef8241bc29a51715a692e
MD5 9f18cef8dee4be4129f4b4b9c397896d
BLAKE2b-256 8e51e9d9594de192b84c47754c249d7f3e7f5a641e7850e3c8ee8641b9f98486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.26-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c21c0af87547b1e73d58da10330630d0d20fa92e35e85ea0220de7df43f9a21
MD5 abf1ee82b8dfb6ce292c393119be234f
BLAKE2b-256 38c6a06ab9fcf8752d4941b57293da5b3383142356ebeeec08979305185869e8

See more details on using hashes here.

Provenance

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