9 unstable releases (4 breaking)

0.4.1 Sep 28, 2024
0.4.0 Sep 28, 2024
0.3.0 Apr 18, 2024
0.2.2 Jan 17, 2024
0.0.5 Dec 14, 2023

#2356 in Network programming

Download history 47/week @ 2024-07-08 29/week @ 2024-07-15 20/week @ 2024-07-22 67/week @ 2024-07-29 45/week @ 2024-08-05 13/week @ 2024-08-12 10/week @ 2024-08-19 33/week @ 2024-08-26 7/week @ 2024-09-02 81/week @ 2024-09-09 9/week @ 2024-09-16 366/week @ 2024-09-23 146/week @ 2024-09-30 91/week @ 2024-10-07 76/week @ 2024-10-14 111/week @ 2024-10-21

578 downloads per month
Used in 6 crates (4 directly)

MIT/Apache

245KB
4K SLoC

Library of lock-free constructs.

From C++ Concurrency in Action - Anthony Williams

Obstruction-Free: If all other threads are paused, then any given thread will complete its operation in a bounded number of steps. Lock-Free: If multiple threads are operating on a data structure, then after a bounded number of steps one of them will complete its operation. Wait-Free: Every thread operating on a data structure will complete its operation in a bounded number of steps, even if other threads are also operating on the data structure.

Lock-Free guarantees that a misbehaving thread cannot block any other thread.

Dependencies

~245KB