Crates.io | multipool |
lib.rs | multipool |
version | |
source | src |
created_at | 2024-12-10 19:30:35.523821 |
updated_at | 2024-12-12 18:39:07.548797 |
description | A configurable thread pool with optional work-stealing support and task priority scheduling. |
homepage | |
repository | https://github.com/ndranathunga/multipool |
max_upload_size | |
id | 1478971 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Multipool is a Rust library that provides a configurable and efficient thread pool with optional work-stealing capabilities. It allows you to easily spawn tasks and handle concurrent workloads, while also offering a builder API to customize the number of threads and choose between the global queue or the work-stealing mode.
Add multipool
as a dependency in your Cargo.toml
:
[dependencies]
multipool = "0.2"
If you encounter any issues or have feature requests, please open an issue in the GitHub repository issues.