*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.
MIT