clone-stream 0.3.3

Turn any Stream into a cloneable stream where each clone receives all items independently.
Documentation
# Clone-Stream

[![Crates.io](https://img.shields.io/crates/v/clone-stream.svg)](https://crates.io/crates/clone-stream)
[![Documentation](https://docs.rs/clone-stream/badge.svg)](https://docs.rs/clone-stream)

Turn any `Stream` into a cloneable stream where each clone receives all items independently.

## Installation

Add to your `Cargo.toml`:

```toml
[dependencies]
clone-stream = "0.3"
```

## Documentation

See the [API documentation](https://docs.rs/clone-stream) for examples and usage details.

## Contributing

Run tests:

```bash
cargo test
```

Run benchmarks:

```bash
cargo bench
```