#async-channel #sync #channel #async

no-std libsync

A library containing channels and other synchronisation object implementations

2 unstable releases

new 0.2.0 Apr 23, 2025
0.1.0 May 8, 2024

#246 in Asynchronous

Download history 71/week @ 2025-04-18

71 downloads per month

MIT/Apache

140KB
3.5K SLoC


LibSync combines “lower level” library objects to produce channels and other synchronisation objects e.g. it combines Crossbeam ArrayQueue objects with Tokio Semaphore objects to produce a multi-producer-multi-consumer channel that can be waited on asynchronously on both sides.

It also has objects that help you keep count of messages in a pipeline and "return stores" for "returning" values from one thread to another using a reusable location.

In addition to message counters, you may find IO channels useful when working with actors.


Todo

  • Add more documentation
  • Add tests
  • Decide on what is staying in the library.
  • Get the channels to work with other async runtimes, preferably via generics.

Maybe

  • Add synchronous channel implementations.

Coding Style

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

So this:

fn bar() {}

fn foo()
{

    bar();

}

Not this:

fn bar() {}

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

~0.8–7MB
~52K SLoC