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
After updating soa_derive dependency from 0.10.0 to 0.11.0 any code with #[derive(StructOfArray] fails to compile with the following message:
error[E0405]: cannot find trait `SoAIter` in crate `soa_derive`
--> src\main.rs:3:10
|
3 | #[derive(StructOfArray)]
| ^^^^^^^^^^^^^ not found in `soa_derive`
|
= note: this error originates in the derive macro `StructOfArray` (in Nightly builds, run with -Z macro-backtrace for more info)
@Luthaf I believe that publishing soa_derive_internal 0.11.1 actually broke soa_derive 0.11.0. The reason being that #41 actually added new things to soa_derive and the internals depend on it. I think bumping both versions to 0.12.0 and removing the 0.11.1 from soa_derive_internal should work just fine and would retroactively fix soa_derive 0.11. What do you think?
After updating soa_derive dependency from 0.10.0 to 0.11.0 any code with #[derive(StructOfArray] fails to compile with the following message:
Barebones example project at https://github.com/VitalyArtemiev/testsoa.git
Steps to reproduce:
Tried both with stable and nightly. Sorry if this is a known problem.
The text was updated successfully, but these errors were encountered: