nuts icon indicating copy to clipboard operation
nuts copied to clipboard

Nuts is a Rust library that offers a simple publish-subscribe API, featuring decoupled creation of the publisher and the subscriber.

Results 2 nuts issues
Sort by recently updated
recently updated
newest added

### Idea: Allow subscriptions without an activity. ### Current Status With the current API, a subscription can only be created on an activity. This sometimes forces programmers to create a...

enhancement

Right now, nuts only works in a single thread. All data is stored in the thread-local storage object [`NUT`](https://github.com/jakmeier/nuts/blob/master/src/nut.rs). If there are multiple threads (non-web) then there will be multiple...

enhancement