Skip to main content

An event loop for asyncio written in Rust

Project description

rsloop logo

An event loop for asyncio written in Rust

PyPI - Version Tests PyPI Downloads

rsloop is a PyO3-based asyncio event loop implemented in Rust.

Each rsloop.Loop owns a dedicated Rust runtime thread for loop coordination and I/O work. On Linux, low-level fd watchers plus plain TCP / Unix socket readiness, socket reads, and non-TLS server accepts are driven from that thread through compio with io_uring support enabled. Python callbacks, tasks, and coroutines still run on the thread that calls run_forever() or run_until_complete() (usually the main Python thread).

The package exposes:

  • a native extension module at rsloop._loop
  • a Python wrapper in python/rsloop/__init__.py
  • rsloop.Loop, rsloop.EventLoopPolicy, rsloop.new_event_loop(), rsloop.run(...), rsloop.install(), and rsloop.uninstall()

Repository metadata currently targets Python >=3.8. The packaged project now supports the core event-loop surface on Linux, macOS, and Windows, including Windows pipe transports and subprocess workflows.

Documentation

Project documentation now lives in docs/.

If you are new to the repository, start with:

To browse the docs locally with MkDocs:

uvx --from mkdocs mkdocs serve

Install

From PyPI:

pip install rsloop

With uv:

uv add rsloop

Usage

Simple entry point:

import rsloop

async def main():
    ...

rsloop.run(main())

Install as the default asyncio event loop policy:

import asyncio
import rsloop

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

Manual loop creation also works:

import asyncio
import rsloop

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

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

Custom Async Rust Extensions

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

The public entry point is rsloop::rust_async:

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

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

Verified Surface Area

The current codebase implements these user-facing areas.

Loop lifecycle and scheduling:

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

Tasks, futures, and execution helpers:

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

I/O and networking:

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

Pipes, subprocesses, and signals:

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

Profiling:

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

Fast Streams

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

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

export RSLOOP_USE_FAST_STREAMS=0

The native fast-stream path is used only when:

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

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

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

Runtime Model

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

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

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

Current Limitations

These gaps are visible in the current implementation.

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

Build

Quick check:

cargo check

Release build and editable install:

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

Build release wheels into dist/wheels:

scripts/build-wheels.sh

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

Profiling

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

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

Then wrap the code you want to inspect:

import rsloop

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

Or manage the session manually:

import rsloop

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

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

The current Tracy feature set is aimed at local Windows profiling: enable, only-localhost, sampling, and flush-on-exit. The last one helps short-lived runs flush data before exit.

If the extension was built without --features profiler, profile() and start_profiler() raise a runtime error.

Examples

Run the repository examples from the project root:

uv run python examples/01_basics.py
uv run python examples/02_fd_and_sockets.py
uv run python examples/03_streams.py
uv run python examples/04_unix_and_accepted_socket.py
uv run python examples/05_pipes_signals_subprocesses.py

Example files: examples/01_basics.py, examples/02_fd_and_sockets.py, examples/03_streams.py, examples/04_unix_and_accepted_socket.py, examples/05_pipes_signals_subprocesses.py.

The repository also includes:

Benchmark

uv run --with maturin maturin develop --release
uv run --with uvloop python benchmarks/compare_event_loops.py

An example output from that script on Linux with CPython 3.14.0:

callbacks (200,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
rsloop         0.041608     0.040585      4,806,807        1.00x
uvloop         0.087539     0.086690      2,284,707        2.10x
asyncio        0.229563     0.221348        871,222        5.52x

tasks (50,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
uvloop         0.084425     0.083497        592,239        1.00x
rsloop         0.091845     0.090982        544,397        1.09x
asyncio        0.138782     0.137716        360,276        1.64x

tcp_streams (5,000 ops)
loop           median_s       best_s      ops_per_s   vs_fastest
rsloop         0.119483     0.118451         41,847        1.00x
uvloop         0.119582     0.116446         41,812        1.00x
asyncio        0.138408     0.134438         36,125        1.16x

See benchmarks/README.md for workload details and extra flags, and demo/README.md for the FastAPI loop comparison demo.

Acknowledgements

rsloop builds on the Python asyncio model and is implemented with PyO3 on the Rust side. The runtime and I/O work in the current implementation rely in part on compio. On Windows, parts of the runtime also rely on vibeio.

License

This project is licensed under the Apache License, Version 2.0. See LICENSE for the full text.

Project details


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.16.tar.gz (338.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.16-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.16.tar.gz.

File metadata

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

File hashes

Hashes for rsloop-0.1.16.tar.gz
Algorithm Hash digest
SHA256 92dab38da0063628cd6890241cd70d0950ff4859d4c1433330675bbd7a6c03b2
MD5 e6aac0190a294e605894fc885dedd43b
BLAKE2b-256 38e80555bf4a32cbf9be4346af7e2f6cb0f0196a23bda6ab8994a9ce5513e171

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.16-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ed7193b721bddf971c8f7b6a2ebefddbe7180e48e7f74457d1efc41fa911755a
MD5 6dfee5908f660f3a20418e60403dcb99
BLAKE2b-256 f1ee56d738f08ec587b166d7d0cd513401e21180e80585b76be26be47c83bc79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7a4eab8d11df7d3a3ff2f47b9b7c2ac42acd6402e8c619491b947ba5c5760628
MD5 56ceee496f333fd979575059eb25a37d
BLAKE2b-256 59a62956b47ec8e219dd4cd005cf2d72be06675145b545d9d7d6c0f4b6a3bdc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 88f349317eb0b00f5cfc82e175e805fe3b72075134073ac7492b5f396229887c
MD5 19d48b3dbefbb47014dfeaf78887275a
BLAKE2b-256 947065827ed6b67b0d2892abfd1d4c24fc949ad4b616ca880abb84875cb284a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6a393af13ed262504b2c84e4892f8b3bf6f27bc146e8fbc4082a063056cf233d
MD5 2ccb0e277fccb5cb3a1ca1baf45ac386
BLAKE2b-256 2242a9b2d2e58927591f7f98733ae2610281fc3a0b06cac2afb9f0afa8e74251

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59651239d23f0ff742be7bde186bfc7437d32e77748f7e055fef62db7c55db77
MD5 c59385fc6fc4f15bea3059381ada5ba3
BLAKE2b-256 4c1c5b0eb944914b9993cdcbb9929aad76846a99f07f4abdc1931c40e9e5b7d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5b44b763ee1ca5466b2d021b55232e63d508a76e95a555bdef750f8c5d56328
MD5 e675f5fbe02a141543a83e29e9144594
BLAKE2b-256 55900ea618958fd59c712e141964af843c4da12b9a142bccc020dc0fd28f0379

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dbad42d35b512e475a5cf17c3939ee1a7085a937dac3625c0a30fbd1f0cf47ee
MD5 139afa15f1829a8ebb4601a9226372b4
BLAKE2b-256 8255cd16c7e2b216ba0d3b702db8e302fb2625afec15df36e4b2311200313e4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0be0f7c2cc16a9de7cfad04d7eb9cd28540bd765d20b7f4899bd1539c82eb82b
MD5 700a90cae17e9ee88407814536613768
BLAKE2b-256 6dd0815b4ea3b133d0fc62cafefd35608f624addb5a4822a143ed77f2ec06b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 16a540b2c13597a87f34bb03c8b62f4c791b1b3e7586476c0565bb4b3d251e4a
MD5 a536e5065db740e9f9ead3054e270e17
BLAKE2b-256 166115573bc08d06542497decdb4bf7dbf6ca4e6aba054de0a4938c0bc67550d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 76269c461446d4c43bb0d170ef1681760628fb50fdc772255ac57aed510fd602
MD5 d766f1fd3e27179e44eab7aab0a19d70
BLAKE2b-256 e0d59b7b0787248c591e26aac995e45b5079ee0745746dc19023a80c0061a5dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f39b7dc3efc455d767f61adc7d69c0d9816a3e5c5076b0e44dfc98c502247418
MD5 c0c8054ddc3195575a5a4f41e64b1567
BLAKE2b-256 6c91b4845615f2ea0e998c225b2e89120214d6cd62ae2b1e39c55f66288248f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e71dcf91143e2bc4567ac7170b54b5863dc5e3a4f673c1acac8ca3d09c68c9c
MD5 834b85a365f7a944c39f790b666f6a57
BLAKE2b-256 24dcc4ba1763977a352640386772fd2497035ef9567f92e0f2131b54f2527c5f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5e2499bb3aa0ad38c1efe1e8d8af210caea276f38c81e3b0f0657bab84861f37
MD5 ef55376ebcb054c407b18fc47f288312
BLAKE2b-256 52046c55f23aa4a1fc682cea3ab3ac4ccdac8c2f35779b584689f211fd759b29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a260f860f38eea8d508a5fca9ce03817c9b19dd66786f7f6b895b4614c86b6e1
MD5 7b0225ec0c38d71f38a02ddb7ec79f60
BLAKE2b-256 e7796acb06dda25e521f90a3aad27d27f81cdf0a799ff99c25f88a78581d38a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1295401fb4a6b7706a8b089b491ddb83e6a62d8d3c8470462d956ee7480119b3
MD5 f2db9869044d1ae5b59433ed156f133e
BLAKE2b-256 fad7efbe60289f70fd7a0458c89e1a6c16a0965ef990cc305340347dfb830606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f74a12d60b6d3bb743f23f859c94e2c5dc40ab77e76885dfd3c8c49b9e684b25
MD5 422c2951575e7cc41e37a9b6bb569b19
BLAKE2b-256 f517066f6e8fb2df523791722e60840ac7f4da280825a91e4c3a51da4e546c3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dad713b0befea5d3df458906bb15653d5fb927a67eab266eea0dfd09a8f8f019
MD5 65d4cf667e60f6697d8a8be3acbe0abb
BLAKE2b-256 96fc5927c5cbf432ff0271059c9c942715569b074f281e1f4bf2f13495691a3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 333cfeb5ae10a221ab34d825643fa010b4ede11083ca0ad88be589d4115e2e98
MD5 cec3c6d431badc0b4f13fa1fa0973239
BLAKE2b-256 668b0d55ccf5a109ad60e29da0136e5ba919dec88c5230cc4b7662f77430a97e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rsloop-0.1.16-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6743e9b45060f3c41d736f19450194a9dfa4f333467239839d8818a20be2d696
MD5 295821f37849561da578f551d05e5912
BLAKE2b-256 2d0f59ef71a0e8cf6012457adb88d20ac03d5f351022a4e5952589c9c90a246c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2011e516b244cc1965d7756ac0446177eda56cf5b2551ddee07698e225a7a225
MD5 6cd9bebd5561fd1a24d42f4596a077a8
BLAKE2b-256 aa63a89063ac187630e1c3555ede9198e9740c95509ff6e83693da36888c7599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 aab711127e56ba81d6f905fa22b8d3b3bedc5ecedf4249adc3192437b580b780
MD5 6547874f37ca94256b137f54c2b5d623
BLAKE2b-256 0c9ce696663687c75d9780e368a0821f61471963649fba1afb081278ede4dde9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fdce89d65a5baff6e22d0703d5914426ddfd41bed5d756cd1a09f39f92e4afc1
MD5 ee710c3797b79759753b806307481ec1
BLAKE2b-256 85662c09391e6972ad85a8980c63445501dadd790e0f2692b503798497d40ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11a08e406c55abc1efda93b4f9646a880ff0821ec01abe7acabafa0f4f5da8cc
MD5 24092713f2593e99d8c3027e5eacb063
BLAKE2b-256 13b2f0f23a18a9d1aedaa09679ecc24e22ed43e3458af5c8eb008951a866061f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5552fcff244c383c73d1a29f4276093ec6b3ddc430185fdbff4d80ea80c45aa1
MD5 e6eca6f30dfb60bd29add78737178eae
BLAKE2b-256 2925c4b3834ca4d39dbd9f44c586ca79b86dca73cff914d2b4d5a72132899274

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 122674cded0e304cc1d822684c5c4df0c5e8731e56919183017d16aa23ae2112
MD5 c1e12e2d8ed2d88b63c8face7bb51b53
BLAKE2b-256 be2b1efe1c5fa4e1f2377d2ab3d11c7349e630e358eb445b8d6d1873ac6b5a2d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 71497a7f5412e991e6f169e0c2362fc1ff209d23723d9bca7365ddf5dc6fed35
MD5 9bdbba32debd7f5ac15d4b7efc997d0c
BLAKE2b-256 9f34d33969cdf013a93eb4503db6e0d5cdf52b02a42df8ba9714ef137342c387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 03020f85dada48838630aa435b359fab660f2d64a3c3d4f1df7c903049522a50
MD5 f8c9cad343ae593360459ae4921d0f22
BLAKE2b-256 becdbbf44465e59ea692a566aff5884e4ec83143e92b6ddf0ac34857e0660cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6a8175a7e02e0b227cbc14da5a422518c0c58662a928970ddb492ed034efd08c
MD5 3bc49c87980a9a7453abe1e79fdf60ec
BLAKE2b-256 70a4d6ab74f31a4d925ffc11fbf0b71f4b799f3374d1f23f8dd6b339edcf0b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bdc7e85ca945b6c77f2fe47cd02bb50bcba72d170c7d5ccf90a2533f2bce214
MD5 5ce98627f55d98a0aebfaa661a738a68
BLAKE2b-256 f52eaca8850310504524a204b5a7a385302ffa308bd5ea49d54f277410d23d03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5f3c8515afe03ed4eb5ad8946e9dea71ab7220b4dbea65ed5b440d0740f0972
MD5 278a34ea5f5105cf7a2e6cba11c4171a
BLAKE2b-256 95711e2ff0d59ae836f99fb4defc5738c776178a03774fe23b78d1551a0d10be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 26a2d9f73e3dd41571e25f63c6c8379b9ea2a9cfdbe130dc06c1d1c7173378f2
MD5 a056fea0ac673d1e35ccf602c32d3e2f
BLAKE2b-256 fd12178f311cdb09dcd5b003c0a2fbfd733c622084acf3457494c5d9c573ff1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f89287dbe39503bd1587c89e031bc0bf1a7efc4575ab7c6d02d3c4f17d3e0e94
MD5 2f10893baf99b569cf8fb9ea80dfe59f
BLAKE2b-256 b556db04d3ba3299303cde5d6c03ce46b9e7262e9c7fa2abb7f840bb2c6058b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4d7a40926fc1ca9ed33fa893854c4b72f8d77540c230279cb5ad2420e97ba9e5
MD5 b557222d11489a839c7932bf7ce9e1f5
BLAKE2b-256 f259bf781b96de9ea62cf28c28bd393a43171af628ccc9b3ce0b72169bc212c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4875cb7fd74911d6fc096c83350326fda14ed720bf77e7abcaa457b8f89f05d2
MD5 052956ebe515983c13ce1ab407ec789e
BLAKE2b-256 800b36c7f19d797dd8c43ac3c6523e1085ff8a1d3b5d3d40dfe7926c15cb6693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ee1ccfcd7e43160f1d0ec58014384caee0712a04b88ad6b3f4f0df4e7a7e7c5
MD5 26efb170feb26c3508fb039c94291c42
BLAKE2b-256 3338e95b196f03e628a5dcf794fe221084e02f61dca48db8fcec6ce16f3d9f73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93f917c3ca5ff99197766a89bdb6bef8d35a00cfaa137dbe033a97c3a958a4c5
MD5 b730a1410612def78d6304693c5533a9
BLAKE2b-256 8d733255b166d67389e41e83c21138e130459aaf0056720cbaec4ba6da7ec770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 aef4a5791a2123db857d7845b1347842ffabc2e31c32904c33d34417d3c7aa70
MD5 4455821dccebe8eada67b24648f9a5a0
BLAKE2b-256 8273a570f345729d0f72780c74098b721060d9872506440a24492f6dbf4d6e27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0533c0ec4f966b650b6fd2f4a7e41185cef995151cf90544646bd6fe3b6b2b5c
MD5 ba1995e1506f6882a9a7b57c54a0c61f
BLAKE2b-256 b9c2cb58a5fcf35d3ff8eb2befe02fd587d1f2f4504236e2c0d2fb84af750b16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8cc9dfb9f46562159c54d55e64bd5c8c5c7056465900d24537304935dee89de
MD5 d3942308d56228af8f33a18d33fb226a
BLAKE2b-256 9815a3ee444787eb85f09d4b1784a5b306bfef16f8f636e85894c611ee8a4e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c789bfee3b4730044d957ace52d4b64d9ffe0319863cdd834b0bc8e592f0679e
MD5 cdfbc4cd22a1aae7ce8a7c23a2b7d95c
BLAKE2b-256 93ec63e7d1ea623ba7d94f1bb64986a97b06171f01c5fc6eebd6a0c64a7ca366

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.16-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.16-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2c43a3ea2d2e9843d93459b189f9f36e46119339908e41e3370691ef677d7452
MD5 e4d5bc3be350b6f4f669764659a1ab72
BLAKE2b-256 b6451f71f07e165171f7313e0391586de04f919db3aeb9e30ba4845ddf2ddc17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 652eb780dac6e91da797868722e9b3c623de1c9bcb28b93ddd3ce5692a9f79f5
MD5 a9237abd9b8102bd6e70b9e5494cefe0
BLAKE2b-256 8085479df8e6b7c15cd6de17708026a3eb38dc5f056eb2021c8c3ed709977527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c1c75c141f4526848ca82d3fd61b7f122cbefdc09aeebea8b656744cae885d6c
MD5 c5c69a088b6bda9c1d7f9f34afb23422
BLAKE2b-256 91c351d80235e7a2c59ab327158af257970d57679b0da4915dda4f7c8eeb511d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab2733cbe993f20c1998a07c84cba2572d83cafb48cea2e5edb214ee5501b8b2
MD5 8ddfb70efeef2c4aeea07522f3c67e97
BLAKE2b-256 3aa8a3577e33f6454f65f0426fa84bf1bd7bc37d002e456c6427846065697914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.16-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e1ef06c0a3f42d0c6e7a44fa1b7d73d87c5f27db5c3f614ef459e3a07b4e558
MD5 18f37578f093dd914e9a6e333252c1eb
BLAKE2b-256 5cbb8a3d68604b2572054c637c824fdce4f479aba76ef65b0f809e4a5205058d

See more details on using hashes here.

Provenance

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