2 unstable releases

0.2.0 Nov 29, 2020
0.1.0 May 5, 2020

#616 in #derive

Download history 1179/week @ 2025-12-29 2350/week @ 2026-01-05 2644/week @ 2026-01-12 2427/week @ 2026-01-19 2361/week @ 2026-01-26 2646/week @ 2026-02-02 2496/week @ 2026-02-09 5227/week @ 2026-02-16 4244/week @ 2026-02-23 4542/week @ 2026-03-02 3413/week @ 2026-03-09 3598/week @ 2026-03-16 3218/week @ 2026-03-23 2899/week @ 2026-03-30 2330/week @ 2026-04-06 3336/week @ 2026-04-13

11,895 downloads per month
Used in 3 crates

MIT/Apache

10KB
118 lines

This crate provides procedural derive macros to simplify the usage of evmap.

Currently, only #[derive(ShallowCopy)] is supported; see below.


Codecov Crates.io Documentation

Left-right is a concurrency primitive for high concurrency reads over a single-writer data structure. The primitive keeps two copies of the backing data structure, one that is accessed by readers, and one that is accessed by the (single) writer. This enables all reads to proceed in parallel with minimal coordination, and shifts the coordination overhead to the writer. In the absence of writes, reads scale linearly with the number of cores.

Dependencies

~1.5MB
~39K SLoC