Crates.io | esync |
lib.rs | esync |
version | 0.1.2 |
source | src |
created_at | 2024-09-26 13:48:06.960272 |
updated_at | 2024-09-26 19:56:48.769972 |
description | This package contains some useful synchronization primitives |
homepage | https://github.com/mchelaru/esync |
repository | https://github.com/mchelaru/esync |
max_upload_size | |
id | 1387496 |
size | 7,955 |
This package contains some primitives that I am using across my projects.
Example:
let sem = Semaphore::new(10);
sem.wait();
// do important things here
sem.release();