picopub 0.1.0

A sync/async pub-sub library with bounded queues and backpressure using Mutex and Condvar
Documentation
# PicoPub


A synchronous pub-sub library built on Mutex and Condvar,
with per-subscriber bounded queues and configurable backpressure.

## Features
- Sync/Async runtime
- No channels
- Per-subscriber backpressure
- Zero-copy fan-out using Arc<T>

## Non-goals
- Lock-free algorithms
- Network transport

## Example

```rust

```