You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's code that unconditionally uses rayon even though it is an optional dependency.
This makes me unable to build cozo-lib-python, as it fails with this error message:
error[E0599]: no method named `par_iter` found for reference `&BTreeMap<MagicSymbol, CompiledRuleSet>` in the current scope
--> cozo-core/src/query/eval.rs:200:26
|
199 | let execs = prog
| _________________________________-
200 | | .par_iter()
| |_________________________-^^^^^^^^
|