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
grin-api and grin-servers are using too old tokio-0.2 crate what prevents to compile Grin for Windows ARM (winapi-0.2.8 dependency has no aarch64-pc-windows-msvc target support).
Solution is to migrate to tokio-1.^.
The text was updated successfully, but these errors were encountered:
Just to explain, this requested upgrade isn't just updating a version number and re-building. Tokio is a threading and futures library around which most of the crates in the core project have been built, and it's changed greatly between versions. This is a very large upgrade that needs a lot of code changes, care and extensive testing before it can be integrated.
We may have to look at this and some other aging crates eventually, but for now the effort is going to have to be balanced against the end-result, Windows ARM support might be a nice-to-have but I can't see it as being worth the effort right now given the amount of work it would require to update Tokio.
grin-api
andgrin-servers
are using too oldtokio-0.2
crate what prevents to compile Grin for Windows ARM (winapi-0.2.8
dependency has noaarch64-pc-windows-msvc
target support).Solution is to migrate to
tokio-1.^
.The text was updated successfully, but these errors were encountered: