6 releases

new 0.3.2 Dec 7, 2024
0.3.1 Nov 14, 2024
0.2.0 Nov 7, 2024
0.1.1 Oct 22, 2024

#591 in Asynchronous

Download history 152/week @ 2024-10-09 108/week @ 2024-10-16 105/week @ 2024-10-23 7/week @ 2024-10-30 207/week @ 2024-11-06 150/week @ 2024-11-13 19/week @ 2024-11-20 5/week @ 2024-11-27 135/week @ 2024-12-04

383 downloads per month
Used in 2 crates

MIT/Apache

83KB
402 lines

test_executors

logo

This crate provides extremely simple, yet useful, async executors. They are primarily useful for writing unit tests without bringing in a full-blown executor such as tokio.

The executors are:

  • spin_on: polls a future in a busyloop on the current thread.
  • sleep_on: polls a future on the current thread, sleeping between polls.
  • spawn_on: spawns a future on a new thread, polling it there.

some_executor

This crate implements the some_executor trait for all executors, allowing them to be used in executor-agnostic code.

async_test

This crate provides a macro, async_test, allowing tests to be used with async functions, including support for wasm32 targets.


lib.rs:

This crate provides extremely simple, yet useful, async executors. They are primarily useful for writing unit tests without bringing in a full-blown executor such as tokio.

The executors are:

  • spin_on: polls a future in a busyloop on the current thread.
  • sleep_on: polls a future on the current thread, sleeping between polls.
  • spawn_on: spawns a future on a new thread, polling it there.

some_executor

This crate implements the some_executor trait for all executors, allowing them to be used in executor-agnostic code.

async_test

This crate provides a macro, async_test, allowing tests to be used with async functions, including support for wasm32 targets.

Blocks the calling thread until a future is ready.

Dependencies

~0.7–2.5MB
~44K SLoC