├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE.md ├── Makefile.toml ├── README.md ├── codecov.yml ├── release.toml └── src ├── async_handle.rs ├── async_thread_pool.rs ├── global.rs └── lib.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/Makefile.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/codecov.yml -------------------------------------------------------------------------------- /release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/release.toml -------------------------------------------------------------------------------- /src/async_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/src/async_handle.rs -------------------------------------------------------------------------------- /src/async_thread_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/src/async_thread_pool.rs -------------------------------------------------------------------------------- /src/global.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/src/global.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybarron/tokio-rayon/HEAD/src/lib.rs --------------------------------------------------------------------------------