| Crates.io | scbuf |
| lib.rs | scbuf |
| version | 0.1.1 |
| created_at | 2023-03-01 15:40:21.505161+00 |
| updated_at | 2023-03-08 20:10:27.942001+00 |
| description | scbuf (sync circular buffer) is a Send and Sync, lock-free circular buffer implementation. |
| homepage | |
| repository | https://github.com/derMihai/scbuf |
| max_upload_size | |
| id | 798117 |
| size | 17,829 |
scbuf (sync circular buffer) is a Send and Sync, lock-free circular buffer
implementation.
In the single-producer, single-consumer scenario, it relies solely on atomics for
synchronization. See new_scbuf for multiple-producer/consumer usage.