├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── compact.rs ├── main.rs ├── simple.rs ├── tokio_full.rs └── vectored_tasks.rs ├── src ├── compact.rs ├── error.rs └── lib.rs └── tests └── drive.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/README.md -------------------------------------------------------------------------------- /examples/compact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/examples/compact.rs -------------------------------------------------------------------------------- /examples/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/examples/main.rs -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /examples/tokio_full.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/examples/tokio_full.rs -------------------------------------------------------------------------------- /examples/vectored_tasks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/examples/vectored_tasks.rs -------------------------------------------------------------------------------- /src/compact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/src/compact.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/drive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar37-rs/flowync/HEAD/tests/drive.rs --------------------------------------------------------------------------------