Crates.io | par-core |
lib.rs | par-core |
version | 1.0.3 |
source | src |
created_at | 2025-03-25 21:25:38.943786+00 |
updated_at | 2025-03-27 02:26:09.247935+00 |
description | Switchable parallel execution core |
homepage | |
repository | https://github.com/dudykr/ddbase.git |
max_upload_size | |
id | 1605803 |
size | 10,463 |
A wrapper for various parallelization library for Rust. This crate currently supports
If you are developing a library, you should not force the parallelization library, and let the users choose the parallelization library.
If you are developing a final application, you can use cargo feature to select the parallelization library.
chili
[dependencies]
par-core = { version = "1.0.3", features = ["chili"] }
rayon
[dependencies]
par-core = { version = "1.0.3", features = ["rayon"] }
[dependencies]
par-core = { version = "1.0.3", default-features = false }
If you are developing a library, you can simply depend on par-core
without any features.
Note: To prevent a small mistake of end-user making the appplication slower, par-core
emits a error message using a default feature.
So if you are a library developer, you should specify default-features = false
.
[dependencies]
par-core = { version = "1.0.3", default-features = false }
This project is licensed under the Apache License 2.0. See the LICENSE file for details.