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. That thread runs a vibeio runtime, using io_uring on Linux, IOCP on Windows, and mio-backed readiness on other supported platforms. Plain TCP / Unix socket reads and non-TLS server accepts run on that runtime. 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

The runtime is centered on one vibeio runtime per loop:

  • the loop coordination thread is always the central scheduler
  • plain TCP / Unix socket reads and non-TLS accept loops use vibeio on that thread across supported platforms
  • generic add_reader / add_writer descriptors use cancellable OS-poll workers because vibeio does not expose arbitrary raw-descriptor registration
  • some transport paths still fall back to helper threads, especially TLS I/O, TLS server accept, and parts of the legacy transport write path

The runtime dependency is now unified, but the codebase 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 runtime-thread vibeio 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 all supported platforms, but generic descriptor watches, 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. Runtime and socket I/O are powered by 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.29.tar.gz (824.9 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.29-cp314-cp314t-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.29-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.29.tar.gz.

File metadata

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

File hashes

Hashes for rsloop-0.1.29.tar.gz
Algorithm Hash digest
SHA256 e2d8f746b57adf85d76668b13c4a83fc637986ddbb8307ff25b6030be26ae1e1
MD5 cfa4b7e796721835a7966f47d3e04623
BLAKE2b-256 dcc8ba346b28b8036be413af17ec30372f07fcae5c703b8428da9db5e6ddb991

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5ce90d765c2b167fd5b6a1520386a7e74c2dc75c6810ba36a4b51e554649974c
MD5 876ecfdb4175c0e692194671bef63da7
BLAKE2b-256 80c9b5e5e53677660ff9009fbc7caf0781b1dc78b3a4094fd35ab3e7ea5af59b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5cbe7f837f44497d7ac308bce7dfedfddf46ea0d285d6fcb5b4d00a945975b13
MD5 2dafc6fcc0ad5db446b02aebbae6b76f
BLAKE2b-256 f837c84b69190dd293352cb0da69173f31333e5d7750bca9efe6cf414e1632b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 18f05617fbc061c4f83249fcf7cc75d47abb75397c5be51708b5e51ff4e1378d
MD5 fd41b0335936250c48bf0a6e463bafd1
BLAKE2b-256 44512ab6b2160c0b62928aee6f0783fc557f81d10139b181afc4f159b099f216

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d757eaff410bee196fc26164b03ea4a65adaa626ac2ba7f529c13b98b941ba60
MD5 abaead16d3ac6c0812b7a43a8eb98a9e
BLAKE2b-256 584f021003634041207c1e8026a4f66117f916568646e95dc643ff5d5048bd71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df124343e9df1a6930a6ba3f35d04b59a6cfaa49a0533468dbfa36f344346056
MD5 ea64f5af07760280333cd41211bd05c7
BLAKE2b-256 61eda8b633442532c6850df4675d8856041586f0469b541050cee35001cbd20b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdf198cff6e1c1ab7158fe22cfa46a8791ef73f13fee29beb303f93fdabc4959
MD5 7b83476c1c050c75dab4bb49cb018da1
BLAKE2b-256 d4e7b3faaaaf9a43643e10ae16f39403024215ab34e60374ef6eba4ac211e34c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 565ab47736a53b35dfe14bea5f0281ba2923461143576e7a238701992836bddf
MD5 ba3d0ec7ebee176ae58bc67527e5bfdd
BLAKE2b-256 020c945b0157913873932f8c6708698ad46a8215ea484c6390f7735736edabb2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e8b459cea2da9960fe1ede8d78204a26ca7d9ea4f0faf7f78871bf32d0c4bf4c
MD5 4c43065321b587f3186d614c211090e7
BLAKE2b-256 23ee79986157f453bf836608bd5fa66c08f43552b5dd44221b990dc7d2c75982

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 23f20fe8e44ea220143ae9bf08a57eb0ce413f21c1818b2651c2b103e72b5cbb
MD5 f6c554d5dc3c4eaf3417b9f7de043557
BLAKE2b-256 9c700b36fe11eb102d4fb1b1b87ae42dbc7eab046318abd613fe629ad47dc457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a1b023f724f07e3bbd5d0ae903076ee884731b2b352da03cce660dc4a7c0d8fb
MD5 7a77096eaba44986bb02e023046f2181
BLAKE2b-256 f56aec84f65c58768c4a62f6db7e9e0b27fe601db1bb8fe4e39862c8eee5bf7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d597dc703eddb6af3e6cf996762820bb71658fae4367883089db3658b10e866
MD5 5cf9c0fe1c05c57fd0684e5f4792747e
BLAKE2b-256 4397749ed2f7221f0909c0a92cb43c8bf4a926069d943806d0b79d17104786a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4856f1a7c13bd6eca6e1d4a9e6e99d845e23e9f4e705328f56a0cf55274fd16e
MD5 1a7562d05af3119bba8fc361468e75ca
BLAKE2b-256 fd58d037fbbcdab7621ea222e78c109af4bfdf11394400d4626549fa198489f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a114d9a1e9e37613d4bff782b06be456b34a1196d0084d5764722c51e6427fb3
MD5 1c29b4e402a1e6d31cad18e34a68642e
BLAKE2b-256 7e2d72def7939f119e29d1a70b7c77841f46f2ea22f48398ac2075f02199e809

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 07ff1dae93910225ecc277a2a8c7742223a48581c7f9db1ad84c7ada0a54f739
MD5 2c47071040606d57406cde1bb1471985
BLAKE2b-256 904fae76cc47c46055fe3ed42ec94b9755a260b9705c498f80d38a29346ef889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 720b8f67da9a4368cdf72adf8b107a09850dfb0c1a1c027776d14e1162e98ea2
MD5 3a54cd437bb163fb39289e7939c61a4f
BLAKE2b-256 eaff55247d378dd4a74f4102b0869ac40e7035d86ff0c6ea6b1bde8ceff950af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 9444578cffb770a1bf746dd9b1c168aafd8b6d6e8ba0c6900d9ab5efab2c392c
MD5 6894b4917011ac027d2522f76d230bd2
BLAKE2b-256 90fac83edd2fea951254e018498706874d873b516e20de44828aea866100a3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74951e05179c3bc31433b2681b9f419af63eeb479ba22e3f1ae2738afaf13a61
MD5 05ef9fd2d533c0ccdc00d40f183269a5
BLAKE2b-256 d8cbfceeb8b004fbdacbe80eb8b8c7dbb61198c4349f29600b52bf7bdecc05c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f17843a95dbf017a14746d62e260825c1978ece38fc59a93efe89f4458f678f7
MD5 842ea91b601c0843d0e9e79865c4faef
BLAKE2b-256 6c9f1157724ec2c6974af176a5cc7823a4cb6f2d7d61db7ee27b659a08abe09c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c16cb1dbaa981e8a359be861580669cacc64077b9a6653cb63231d425a9fde70
MD5 88400da63403b182a6582c39b46f84d4
BLAKE2b-256 efde0b16dc04f97415cd3f69f70202347bb8d6fa2e65187c590537487a15c484

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a81319490a645ad882b43d0180c8bd39a1ef521508e323ac6501a29af1f96af1
MD5 6e172e3e1acedfb1a07d97e63ee4f25d
BLAKE2b-256 08ce85ef62c60f30ffacb3b6ea45eeff5cd6039af8d5749a51d2d2b062cf9606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 be5fe39d2012b9c36581434cf7fa7824de9ac032e84882838f2bcee6a82f5d40
MD5 cbb58478df661abdd35ce809400bd4e1
BLAKE2b-256 363aeae1507a2f690273a77554e41e67b55e1398b4131af7d732a6fc9c794be5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 75579f396d1c6c171aafae8e7abdf3778106dcd04948bba396622a20e06b4226
MD5 0ede40d18941da46eb81b8ff2d582f1a
BLAKE2b-256 d702ed42993049ec889c6d1c95110d07ddd32a36f4947ee76bcedb7211ff4c4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5ddf58606d7cff6fc87a170df77d693fb44498d9fd50d2ed65b23f3c65f9a0c
MD5 4001da84f206c259aa33ab064935df1e
BLAKE2b-256 111c5e578e01a7699d708c5012ff32d5bc7129686e65b5863674175d0a90bd02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6db4322fbc24f4c82202a1d052e9272e97f6d229fe16ed9a93aae835192967ef
MD5 7c3826a31cb9cdb6a156a4f8986c2c16
BLAKE2b-256 80c8685eee7380b6a7b4b5ea47e52adfb8197c741f57adcaefd3840e3a9670d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c5b036acdaecb86a1d09af4e71351c9f50c72306a79cedd4252c052473aaedac
MD5 9e813b0ab6a2e0783a5396b38cc3273d
BLAKE2b-256 3fded381cfeea78b838c37778d64dbb908a9918b5e8a99daf8da1b33184ec2bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e462826475aa5d741f32a3343e908be134ed13d1ce69c08628698a3b1ef0cc8f
MD5 d39444407d6af7f1db6f4bbb29fada4b
BLAKE2b-256 ca970ffdfbf0dca17dd084c0c86f3c7e1fdca484fa1daf06501943465ef84851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 38dd7ede0386f376bf0c450e537fc51f65bfba634659f6e90912aafee4cb58de
MD5 911db7d6211b77d7206c7d7329f20dc6
BLAKE2b-256 c62228c7394089e9ddf2152355984a0c4a33c1f5d972111b433f542c4971c302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6972afa015c1fb8faa74bab6c97613bb0dd343be21c2f76e26e8ec7fce87062d
MD5 05a4c1d9a5101774c5561aa33aabf62f
BLAKE2b-256 ab569f66f091066754c7d8a7220982ac9aaa9a84e4adaaecb90dfedd2c2f6507

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e01b862f6b6b2dec5cdb242764ad4dd1113dac5cbad8d229e12afc7ef884d9ef
MD5 3c41305e6f6574d6e6fd008dae70067c
BLAKE2b-256 96f516d7aa1549a1bf3e6f122e1ca65f73754118fd3f39fa03d0679962050e36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11952210aa35a9ba6f39bd5c3a3e00b3f1a683dec6ae83fd4d30d9260022c044
MD5 5228d75640b968cc58ced5e631c332a1
BLAKE2b-256 a8764a474a7ca9cba9865bd5f81ea5e7a073d538a53e172e653ca9f5bc74c2d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 49fd5c937981fecfdc492e2d7636685c09954c05cbdd19433003fe32f7f5ffda
MD5 ee4d02c3571f67ade444f9e152d3aba8
BLAKE2b-256 323928b12abd6049fb804b4df613dcd8e151db158e9b834cb83ff7f4ff9b5673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 2517454c647f2afe52690ac5d27ff9ab14afeae4a5aac3f766d58227b0269717
MD5 09cd567ed566ffc41d0b42f6fc1b2e0b
BLAKE2b-256 fca9dcfb7428fbcc848baaa0740c800b78360875af816edae2f91b3816ad5f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ee3a96e1dd3f1825168f929c0c9f88787b730789981f541ecf84791b45081489
MD5 25b9f402c10a6e85f8cada24ada14b76
BLAKE2b-256 e8e5ce614e445eb4af610556fd4b8d35a141dcdcf3bc4eab2b61bf11db6e7953

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b4b17cc29e7f8276677551f86308c018fcb435a3fde041cf1e8fdfb3f75f005
MD5 8d89b8723c54fc968f0c22348dae593d
BLAKE2b-256 26cac4c0448d55163b82cad25286fda5c1d638e0e4673c82026830a5b75aa2a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df5cbeab7a08525f5b52bfe9c6bc2d321b8d2b0a07e319057ae67d4cf91139ec
MD5 348a95424a15a6edb69fc0de19eb5b90
BLAKE2b-256 4f7a7618ac818360afd4d75968f27d0704035a070354c701ff95687b513719c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 05a0fd91cca173ef19f508e43b2706e7f142c2765f03d84afb0bc429c7211aa9
MD5 89f426eb7a03eec6a21b39550af587d6
BLAKE2b-256 1438cc03ab34e59fa43030b672d51e000669a0681d5dd02942b06dc8b2bc0221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 9c1dd2f9845a2e0086f5edb9d7a29519b8d4fd930cb3eb60d581f9b2ea5cce5d
MD5 62c49f87c57622b835f976fe0e455096
BLAKE2b-256 e0b1dcacd1ee0ca901414adcf67d3065dd8f0f9b540c2dee77f943c70ccbd806

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 179ad252555ee85831f73896affda3a1d1bb308233c94ef0e0073a9ebe196e02
MD5 03049622d2a4d3aab3c62221c82fab05
BLAKE2b-256 58ae34ec7998965d8f6fe1e31ca60ad9e7837a53c8d63c8a52851d41a58a7028

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09fd76c0fd19a16743f0d1d29aa42ac5fa0192d0a49a53d56d549a9842606082
MD5 2a982ce110410d513f92d245b18fc7b5
BLAKE2b-256 eed630a22b2f96cf3d2a0c62c4a352a66499922e6fb1faeb5d8f22b3bb9e283c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c79229ffc170102d9dfca61e8a4faf3a0de11cfa6a4303dcf9688c3ed02bbe5
MD5 55e4a561725a0ae0b0e91a34b9750bd5
BLAKE2b-256 aab6e2a1d66335cb6533d5ea69118be76f70d3f29478a4198c3f7b254ef2e3a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.29-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.14

File hashes

Hashes for rsloop-0.1.29-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7d615caf0b49d082c4d24779e2d6a97d0c71c9631152562e36e3bdb993e7f278
MD5 ed42f11aa7b5aaf8dc38ae7200611973
BLAKE2b-256 e66b95971189f098f7f8b0fd760ccc2340ccd4394f1af4ed19f936cba98d80c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5eac092e0999db8ca3fe0f2bcffc90f57161f3dc552315d6e2a50a3650a634a6
MD5 f557cc8ad8521119a9d22750461c22c0
BLAKE2b-256 cb8933e851f12e530000b89357b3e14865b3346169cbfb98d94f5828fce5af3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 77d425bd7346157dc4adee6e71f0bf0db762a9a06ee916158653e6ea479b38c2
MD5 b1501d6abafc50d501a46b861579312e
BLAKE2b-256 db9a969203fc9a6626904371ddb321d43f67a35ae326382e1dbaff07e2ccca13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d656268491dd13d718bb13959e2aedaa43cedab01eed73b4f98278d2147c847
MD5 5af65626e4ecbc28be15096e08de1856
BLAKE2b-256 48913f6f27936ba78d938ec2e5512cbb437f7c5e33d267eea28e6fd1e889b6d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.29-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1f774f666a0c7a697c373a4d0b173c0f8ae846ce736744aa5b5c13efd0ebe30
MD5 bd8245daa4068236ef1b5636259a9040
BLAKE2b-256 4beb53f2391cec45f81af741c2d999215c35a0d1b405f7ad7e3a99324c4885ea

See more details on using hashes here.

Provenance

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