| commit | ee7ec2f6b630f197dcccfbf7c12f368edbc5383f | [log] [tgz] |
|---|---|---|
| author | James Farrell <[email protected]> | Wed Aug 28 22:55:13 2024 +0000 |
| committer | James Farrell <[email protected]> | Wed Aug 28 22:55:13 2024 +0000 |
| tree | 6720801fb8cb497343e338a28bc3b90bcee7739a | |
| parent | ab1afcb3120f062568455ba4e5b1122467dadb20 [diff] |
Migrate 25 crates to monorepo. pin-project pin-project-internal pin-project-lite pkcs1 pkcs8 plotters-backend plotters-svg ppv-lite86 predicates-core predicates-tree prettyplease proc-macro2 rand rand_chacha rand_core rand_xorshift rayon rayon-core regex regex-syntax rusqlite rustc-demangle rustc-hash rustversion scopeguard Bug: 339424309 Test: treehugger Change-Id: Idce828be61cad318b1e0cc961cf42bd78aacd95f
Rayon-core represents the “core, stable” APIs of Rayon: join, scope, and so forth, as well as the ability to create custom thread-pools with ThreadPool.
Maybe worth mentioning: users are not necessarily intended to directly access rayon-core; all its APIs are mirror in the rayon crate. To that end, the examples in the docs use rayon::join and so forth rather than rayon_core::join.
rayon-core aims to never, or almost never, have a breaking change to its API, because each revision of rayon-core also houses the global thread-pool (and hence if you have two simultaneous versions of rayon-core, you have two thread-pools).
Please see Rayon Docs for details about using Rayon.
Rayon-core currently requires rustc 1.63.0 or greater.