#synchronization #channel #async-channel #async #sync

no-std libsync

A library containing channels and other synchronisation object implementations

1 unstable release

0.1.0 May 8, 2024

#553 in Asynchronous

Download history 136/week @ 2024-05-07 2/week @ 2024-05-14 12/week @ 2024-05-21

150 downloads per month

MIT/Apache

73KB
2K SLoC

LibSync

Crates.io License Downloads Docs Twitch Status

X | Twitch | Youtube | Mastodon | GitHub | GitHub Sponsors

LibSync is a library which contains objects which can be used in the synchronisation of application threads.

This this library is structured to compound the features of other “lower level” libraries e.g. it combines crossbeam ArrayQueue objects with Tokio Notify objects to produce a multi-producer-multi-consumer channel that can be waited on asynchronously at both ends.


Todo

  • Add crossbeam::mpmc::tokio::seg_queue implementation.
  • Complete std::Notifier
  • Add documentation
  • Add tests

Coding Style

This project uses a coding style the emphasises the use of white space over keeping the line and column counts as low as possible.

So this:

fn foo()
{

    bar();

}

Not this:

fn foo()
{
    bar();
}


License

Licensed under either of:

at your discretion


Contributing

Please clone the repository and create an issue explaining what feature or features you'd like to add or bug or bugs you'd like to fix and perhaps how you intend to implement these additions or fixes. Try to include details though it doesn't need to be exhaustive and we'll take it from there (dependant on availability).


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1–2.8MB
~53K SLoC