Skip to main content
rsloop logo

An event loop for asyncio written in Rust

PyPI - Version Tests PyPI Downloads

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

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

The package exposes:

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

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

Documentation

Project documentation now lives in docs/.

If you are new to the repository, start with:

To browse the docs locally with MkDocs:

uvx --from mkdocs mkdocs serve

Install

From PyPI:

pip install rsloop

With uv:

uv add rsloop

Usage

Simple entry point:

import rsloop

async def main():
    ...

rsloop.run(main())

Install as the default asyncio event loop policy:

import asyncio
import rsloop

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

Manual loop creation also works:

import asyncio
import rsloop

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

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

Custom Async Rust Extensions

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

The public entry point is rsloop::rust_async:

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

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

Verified Surface Area

The current codebase implements these user-facing areas.

Loop lifecycle and scheduling:

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

Tasks, futures, and execution helpers:

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

I/O and networking:

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

Pipes, subprocesses, and signals:

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

Profiling:

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

Fast Streams

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

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

export RSLOOP_USE_FAST_STREAMS=0

The native fast-stream path is used only when:

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

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

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

Runtime Model

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

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

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

Current Limitations

These gaps are visible in the current implementation.

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

Build

Quick check:

cargo check

Release build and editable install:

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

Build release wheels into dist/wheels:

scripts/build-wheels.sh

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

Profiling

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

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

Then wrap the code you want to inspect:

import rsloop

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

Or manage the session manually:

import rsloop

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

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

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

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

Examples

Run the repository examples from the project root:

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

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

The repository also includes:

Benchmark

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

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

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

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

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

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

Acknowledgements

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

License

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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rsloop-0.1.19.tar.gz (342.4 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.19-cp314-cp314t-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

rsloop-0.1.19-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.19.tar.gz.

File metadata

  • Download URL: rsloop-0.1.19.tar.gz
  • Upload date:
  • Size: 342.4 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.19.tar.gz
Algorithm Hash digest
SHA256 ea2de773539849802729766cb133e694765b03bd4535d8fbe4d79312814c9912
MD5 0f2b0a88002f4b003fea6b8c754a411c
BLAKE2b-256 5cff7ec957961c8b5eb4be68b04b839cd8941b9cbd1c9a0afc6fc7733998a910

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rsloop-0.1.19-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2bc467018fd82759d3adc5d0dd4e44b2aa7f7d9754112bb95972aa08351d2cdf
MD5 0a57503eb833c09da76058f7f932a352
BLAKE2b-256 a5cce5d7095d937dfb46f42476ddec0d6efb5f1cede1cdffc832393617e1aed9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bf614cd8f27630c38eee661c5a36c667193079adf27628122ce43c5bd19c8a0a
MD5 1b263326fd0cdb27eab6e084ff771ffb
BLAKE2b-256 ce09f3764b597d26d2c1b2efbdcb7540f2aa16dd956306d5181a73499a04eb86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314t-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3b52989f7683b340ea32927e93f46c1bf1a6807feabd8bfd14317abd35b22ed1
MD5 ed281571dcbbaea45f0ad5f2848b5377
BLAKE2b-256 7c5086d095e6d84c98a8a2b960d3a4243523e50e47a3749625a04036d6d54cc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314t-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f440d5f0b87a695c1dd389025fa655e2b54cadd015edb14b17fc9bc0a7d10243
MD5 3bdeca1a08a2b22345f9df6d7581b406
BLAKE2b-256 42d2e2aac5c81de33d5d375514a1a3ff24b63c64b17bbbefa11185780cf657c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6af7920a774fca57b40f60e9c13a3beea969c61f6eb09c81f3a4456d73223e6
MD5 448a94f1ea64136ec8ec7cb096ee789b
BLAKE2b-256 66fce4e7e6201f2227e4a41900413772902f7617a4b68c6c6728cf4730bd6681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a30c607964c55e1d5b2e0341c59de874c9fd7eeba8aa36392c10f731378d74c
MD5 df2380d407e6a728aee4a5ad7dd2e117
BLAKE2b-256 a4f0450ebfd3a4092d2575404e24fe87e300dae6cd27862df0c7e585b52ef2a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 306ad2566361b1245386a9a34cc3a0bcedfb76d3ea701de985e3be88344f0340
MD5 629ec214241679b47b679d34be50dfdf
BLAKE2b-256 32af182816a9f3680fa2492ddb2453cc56dfc415a78c8bf047534ddc0cbc98d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3534835a4101e9d90852be4420699828d493fc019eaa54cdc548e4d62847a198
MD5 6c2061892e4142a085b82a01a59bb6fd
BLAKE2b-256 0beef077a028b45145d0916d9efeabe881c9130324dee5accd0da75621a31da2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5fcc2f44998b2a6e53c28d609d34a04972b9dfa49d00da3d2ec477d24b8914b2
MD5 d18bda61f9f17202fa48cefc03cc7e39
BLAKE2b-256 74e4778bc1e00a37205abf254a71bc1f2b8615bf3c416bcbded08c33a4910e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 65b602a6f6374eee50d3cbd033a1effe4bbd8e03dfddbafa23b93d5e4effacef
MD5 315fa2a4a5654f030628a0ed39d8a4eb
BLAKE2b-256 2250056133f5a015891738772ed37c71bbf682a2fedb56a807f9a8231b87e259

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a396bf71d09114cdd98d55188128067cc443a7e147670ea35199ade3ae1b6d3a
MD5 6094c7eaf73f32aa5f4462e5447019df
BLAKE2b-256 0bdab96d30e8c45d4920b301eb6c8337c61f4b44c243c391d8faa23562704323

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d90f8b88da0bf8846dbfbaf07fad2f577578723d54c3a7fe832b0ddd678de1b2
MD5 f36365a3010667bdd773735289549632
BLAKE2b-256 b695570d4b5d91aee513d6b029eb4a36f89b44c96a30c19dce3d93e01a54c855

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 69274b0ec2a02da0425b4bbda4545be4d2cf11537e6d3a6db56cc84384082171
MD5 c5f5161870ec109b4e2c61561331e07d
BLAKE2b-256 23329dccb2c44086f3dd449aa25920ec281e6c33fd6f4840cef02794c5330760

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0b770b65a4b5822cf6a05663f2c37d7b34ad9230a3013d0506f23652eeb8f09f
MD5 a298cf47e3d702eb5de55900f8437b68
BLAKE2b-256 9fac3f098b888d57949448630a0033d85d66a09ca95595e5f1c7f07f3f9cf8da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 d2b0b9e53b2871d8bbb1e1066b9ded747f27c1876caa6537bd4e1599478577fb
MD5 389a94ad4500a4b8938cc5315482859d
BLAKE2b-256 077320c90059361c18ef02f33a759bf66d9d2bd5162d7939f0e0ddaac4e96eeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 2be9935983deee3dd1d258e83724878fe6aca400e613f456078b37760d3476ad
MD5 3b3b5e7e12f1d48a07ebf534e3cc4ff7
BLAKE2b-256 1d631a2c922df0ccfe590600be859ac6d575763c1c6d79d7a1998f4c361f357d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9719bd44c7c89c2055e85fdf61035183b0b6c2df8d2db7ca3695bfd19c8c41a
MD5 e8510a2cc61b5d9dfcab74fbeec16a95
BLAKE2b-256 cfcc1d93582d2f2539e864aa9fffeb5e0ade9e6f44b645feb6d106c6c87d7749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9f93cad17a6859a13e36789cb246c10bf4b267604195c28242332ff0ee35829
MD5 793008156a09763488041a1dcc101fe2
BLAKE2b-256 b5c4d62c8196f4ca147408846e5ca9f5aad18553e34843c563438b9bb9eee780

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1221f34bb63f6af62e9765bccdf47c492f29efc74f26122efa1ffd613bd456ee
MD5 617d2303213d99bcee3817eb1615bd2f
BLAKE2b-256 b79db9339e10f6d6f253dcbd0a6c7f5faebb0de89503817f1a6b6904490f0641

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dcdd50e920f9557647d65cb7820508b1ee61ef613107fc03fa41b0507484aaee
MD5 d0143bcfeea5242dfccbc453af498e65
BLAKE2b-256 0b3a18217dac7f7956769dba924f4088951a35d2ffbb7b24b4f43bec27d98e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1749b0b07438fb2ca0aa52c81751f78bf701a9e8f7c1ec0b2306bd619d79d786
MD5 f54eb0acf89e3758bfcce996b502a096
BLAKE2b-256 65bea146d7a7c93951ff2fb9b4a6dfab348a8fb610736e42ba2038320d8de3a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d1b4812011b4f59c51c85ec4ce9fba2c45f22a42df2046a8f7a39737dfadbaf4
MD5 6d8c61cdac0f742ed4d055572ccac022
BLAKE2b-256 201f21a867a99ba84fc2edf32278bd37c7bbc78a87677199b1d35fc3de7b3a43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ac2e76221158b768fa6d0bc3785ba200e821e5e032df3fd75d0ddfbf640603e
MD5 6cfbeab81e331342fdefdb1d68fc4313
BLAKE2b-256 a1432e3200bfce40227b0ca5ca129734749031cd7c6c2868d0847d9229816d5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40ef1b09d511d8c4768c1327ded02901d459f96e2ce205065b6b4c1dde5c3140
MD5 c34d0528eb41d3ccc1d0d94f1ee711b9
BLAKE2b-256 90ff8e00b1faded8c1f526b2f8c026bde3d44907312a6fafb739ea66563911db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cd0a412c50bf001ed5e16fd17ab41d8c88c8db562e9e70c03b8a64d9a905785c
MD5 54ac3a9731abdaa26c842c6842d23809
BLAKE2b-256 2719190690374c16de6210db045835db26bb9a40c478d01c5732cf1d5e8c74b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6a014130e887cc7e60103abdc3b0e5e0959a05be27664bbabfd341a76302238f
MD5 09e232e331bf93b2ee624ec2a252a9bd
BLAKE2b-256 86c660ebba13ed5d3d5dccbf452fc416325a911b455f4e134731bed3cc97166a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 069e782f417bf36b297f5d89dadca882b048dbbe9c3fd4d1d028666b113b0870
MD5 2a8dfd0c4d2b244c167e024806de8ae9
BLAKE2b-256 4c1308c1016eb7cbafa4a8da3d66834b2a36bed5f1cacf5d5ada584df51e6ffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ac8247fb1d400e8ef8202c8a08afd715c5a344964320af13caf8cc85490920ba
MD5 bf459772d957f4c1922e864053eb22b6
BLAKE2b-256 2de90d1f003345c7f2a90fa992886d6951de6290081cf0c673a8d0b8eff739e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d54d7e54ffa077a0de9ed8bc72914049127a38bf4b10aa5c3598ec4227b22a74
MD5 adc5b062300474471ccf128786c59953
BLAKE2b-256 69711c81ca3d9baeba78df680b4c2214f4c53510f21c2cb1ec366e48aaed6128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39e65be5272c24d82e41e0f4800c69deac9cf937cea11196b4704326a43e37ae
MD5 46aeda241095e5f528ebbff9355d5fee
BLAKE2b-256 3a3bd5ee213726ff350ef2c3523bcbfed842481db8f5feb47c0dd9ba4737ae38

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c813e1b4ed196e9108bebef7c7923a6f8ab9da7519a3d2fdcb1ea50dd12ae19
MD5 c1368eb527cb1bdd96a249063bf3490f
BLAKE2b-256 a656861e0bb2bf08d3a85cdfbba2ba2a76523969bf416dfe6991940744faf798

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 33997b9d183cd62dfa2000a3d06fdeb3bc3e1f34439fe8a18162fd3e27aa9ac8
MD5 99fb4427e3996369e615621be8ab9aff
BLAKE2b-256 30aa279e6b88995a4dc8d1789256d126b6f9b5ba30c30ee055ea92656aa2617d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 34633fdd38a9f053efe29bd9b91fe4a40fa737979dea496c64540da96f8f8a0c
MD5 7dad9ca0342897f6e20a4a0d45ff2887
BLAKE2b-256 c077f5c4504bc70e806f6ee56cfd43a26b1b93a65cd20df3331c4a963f4cf27d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecd0d3dd5d6ce91e49b29e45e114bf017b6f5b29c4576e83edaf0f1a9c7dc375
MD5 c04294be54f10415de8cc2852afbc41c
BLAKE2b-256 6d7879eea89ea76e33958ba94d099e8014e226ff6af801cd75d94090e98dfecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97fdd0225d35b1d3186382aad062449712fe6345c8f2924662fb79a001cac49a
MD5 486f2daaae3c11bdee0aba8311559ae6
BLAKE2b-256 760a50f8ff73e726bf400e82cf0d9155015fb5098c3e7a8712e2adef70ec03ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e2b97ac23689cff872cd62a23ce65b7b1f1677d2438bb342d313a4ad66ffc453
MD5 d2a5b93d8dd6aea1018b103f8903e42c
BLAKE2b-256 cfba0ff524a18fd56acc058bf798bc19955f78ec7d2885289895b82a98a73a28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 df733332bc8bd0ae81dd20add815bcf8c731e1d0e1a5e156b60c5ec73b135232
MD5 bf849325f9dc804ce7c754af10e6d974
BLAKE2b-256 445abf5abe8dc849950b46e9d6a989483074a34df19f2771081fc936ef331dd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 30cafd3766f87d1f935f38773c2c23009e3192538ecdd38dfa1909182ba58a11
MD5 aa675d5b3b3da0a661aa1d9e35c78e97
BLAKE2b-256 eac39f89950cbeeb31f679d4940bf8111de45279d01cb0dcd1f3f6f43491aec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0edbb2db7dda52f3bae77d355fc7b3891a3bc76c864aaf96727efa499ebd18c
MD5 fcdeaa7596394f7f0e7afa95fa9167ba
BLAKE2b-256 9626491f5b7afe178aeda28a0eb7e6de3befc73df14bca63cf2f02715585e67d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33d2438ed752fb4e4d4684194cf70bc116ed46cce50f8347d2bcb0f9bcd094d7
MD5 295639985de09a53298141629800ebdd
BLAKE2b-256 ce26b1191a02cc4db7036ae3c23f6d8e4de07c7c14a116c5d1c0517876c7cfca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rsloop-0.1.19-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.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 02938995294e089b0cbd83d5b64dd458218be3cc428cf2706ae566f5b3bd6db7
MD5 f0f095c750b2dfc98f2f8bf88040993a
BLAKE2b-256 6928657e1e6a70d423b8cdfb3216368b639050326c6668f59da86241ecf4b573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4462069dfb70571c13afc30ba1a7941118e26516c19a22b45d828c085b7f22b9
MD5 b744a0d2119b1365558fbe23a605c7be
BLAKE2b-256 efae04adef02c2da6f0f67c8b483e4d28d49070af22a594d708f58f350b3a8ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b97d2e72cd5f2025570ab65e937a2bfe0b2e80d355eabc867e8992e8e9fae968
MD5 995df25df099ef8b6d7f655a25debe60
BLAKE2b-256 f8316ca7adee799703a8d24f3865e6504a08eb2d25a5cd52ef34a3efd4c9ea5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31fa05142c66178879a723b046bda14690ddeedf565e4f82741076c02c43715e
MD5 f2de3eff49057783e6ea3ef04aaa8010
BLAKE2b-256 1b1e798b8a8373e7270f71f6b16e806ad46cbbe44d1fcf415c262c546f9cb0a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rsloop-0.1.19-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2e456d9bab8d7aed401c8afabfb1f6407e076958fd2ec529edf2a14dee1d850
MD5 8c7a108df82af3523a36873cab15f6b9
BLAKE2b-256 6a17d96d0b88f1e420e8ad35918ed842ad0a0779cc14cc6424b27785bc191722

See more details on using hashes here.

Provenance

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