localq 0.0.1

No-std async primitives for `!Send` tasks.
Documentation
  • Coverage
  • 7.41%
    2 out of 27 items documented0 out of 15 items with examples
  • Size
  • Source code size: 32.58 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.1 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tedsta

localq

Experimental, not ready to be used

localq provides async primitives for use with thread-local executors. They don't use any atomics and don't lock, but in return the tasks using them cannot move across threads (no work stealing allowed!).

The core of this crate is a !Send + !Sync waker queue, hence the crate name. The waker queue is an intrusive doubly-linked list that never allocates.

License

MIT