Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This project is currently in early [pre-release], and there may be arbitrary bre

### Added

- `rayon-compat` crate, for running rayon on top of forte.
- `forte-rayon-compat` crate, for running rayon on top of forte.
- `Worker::migrated()` which is `true` when the current job has moved between threads.

### Changed
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions rayon-compat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
[package]
name = "rayon-compat"
version = "1.12.1"
name = "forte-rayon-compat"
version = "1.12.0-dev"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "A shim that allows replacing rayon-core with forte"
repository = "https://github.com/NthTensor/Forte"

[dependencies]
forte = { path = ".." }
forte = { version = "1.0.0-dev", path = ".." }

[features]
web_spin_lock = []
Loading