# 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
```