8 releases (breaking)

0.6.1 Nov 22, 2024
0.6.0 May 29, 2024
0.5.0 Dec 4, 2023
0.4.0 Oct 31, 2023
0.0.0 Sep 18, 2022

#15 in Embedded development

Download history 25375/week @ 2024-08-21 30449/week @ 2024-08-28 32914/week @ 2024-09-04 25848/week @ 2024-09-11 27806/week @ 2024-09-18 20697/week @ 2024-09-25 15314/week @ 2024-10-02 18727/week @ 2024-10-09 21180/week @ 2024-10-16 18244/week @ 2024-10-23 23437/week @ 2024-10-30 21883/week @ 2024-11-06 20235/week @ 2024-11-13 26155/week @ 2024-11-20 20523/week @ 2024-11-27 16543/week @ 2024-12-04

87,114 downloads per month
Used in 154 crates (87 directly)

MIT/Apache

245KB
5.5K SLoC

embassy-sync

An Embassy project.

Synchronization primitives and data structures with async support:

  • Channel - A Multiple Producer Multiple Consumer (MPMC) channel. Each message is only received by a single consumer.
  • PriorityChannel - A Multiple Producer Multiple Consumer (MPMC) channel. Each message is only received by a single consumer. Higher priority items are shifted to the front of the channel.
  • PubSubChannel - A broadcast channel (publish-subscribe) channel. Each message is received by all consumers.
  • Signal - Signalling latest value to a single consumer.
  • Watch - Signalling latest value to multiple consumers.
  • Mutex - Mutex for synchronizing state between asynchronous tasks.
  • Pipe - Byte stream implementing embedded_io traits.
  • WakerRegistration - Utility to register and wake a Waker.
  • AtomicWaker - A variant of WakerRegistration accessible using a non-mut API.
  • MultiWakerRegistration - Utility registering and waking multiple Waker's.
  • LazyLock - A value which is initialized on the first access

Interoperability

Futures from this crate can run on any executor.

Dependencies

~1–1.5MB
~28K SLoC