├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── executor.rs ├── examples ├── limit.rs └── priority.rs ├── src ├── lib.rs └── static_executors.rs └── tests ├── different_executors.rs ├── drop.rs ├── larger_tasks.rs ├── local_queue.rs ├── panic_prop.rs └── spawn_many.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/README.md -------------------------------------------------------------------------------- /benches/executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/benches/executor.rs -------------------------------------------------------------------------------- /examples/limit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/examples/limit.rs -------------------------------------------------------------------------------- /examples/priority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/examples/priority.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/static_executors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/src/static_executors.rs -------------------------------------------------------------------------------- /tests/different_executors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/tests/different_executors.rs -------------------------------------------------------------------------------- /tests/drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/tests/drop.rs -------------------------------------------------------------------------------- /tests/larger_tasks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/tests/larger_tasks.rs -------------------------------------------------------------------------------- /tests/local_queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/tests/local_queue.rs -------------------------------------------------------------------------------- /tests/panic_prop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/tests/panic_prop.rs -------------------------------------------------------------------------------- /tests/spawn_many.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smol-rs/async-executor/HEAD/tests/spawn_many.rs --------------------------------------------------------------------------------