├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── hold_tokio.rs ├── multi_stream_async_std.rs └── multi_stream_tokio.rs ├── rustfmt.toml └── src ├── lib.rs ├── pool.rs ├── rate.rs └── stream.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /target 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/README.md -------------------------------------------------------------------------------- /examples/hold_tokio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/examples/hold_tokio.rs -------------------------------------------------------------------------------- /examples/multi_stream_async_std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/examples/multi_stream_async_std.rs -------------------------------------------------------------------------------- /examples/multi_stream_tokio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/examples/multi_stream_tokio.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | hard_tabs = true 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/src/pool.rs -------------------------------------------------------------------------------- /src/rate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/src/rate.rs -------------------------------------------------------------------------------- /src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikecaines/stream-throttle/HEAD/src/stream.rs --------------------------------------------------------------------------------