channel-protocol 0.2.0

Enable function-based communication instead of enum message sending. All based on channels.
Documentation
# Channel Protocol


[<img alt="crates.io" src="https://img.shields.io/crates/v/channel-protocol?style=for-the-badge&logo=rust&logoColor=white">](https://crates.io/crates/channel-protocol)

## What is it ?


A procedural macro to generate channel protocol clients.

You can use function oriented communication between threads instead of communicating by sending messages through channels.

This is an abstraction over channels that makes inter-thread communication easier to use and read.

## Features

- [x] std sync channel
- [ ] async channel (contribution are welcomed)

## Example


Check the [examples](./examples) folder for examples.