Alexander van Saase
Alexander van Saase
Is the linear algebra really only needed for its types? If so, then I would choose one that adds minimal size to the compiled binary. The most use linear algebra...
I had look through the available linear algebra crates and I think `nalgebra` is the only viable option. All the other libraries I found either are not `no_std` compatible, require...
In case this is still being worked on, another option would be to use a crate like [maybe-async](https://crates.io/crates/maybe-async) to avoid duplicate the whole api.
I would love to see this merged into the main branch. Is there anything that community members can contribute to get this PR over the finish line? The OP only...
@kflansburg I went through the PR diff and I don't see any tests that are commented out or that otherwise need to be changed.
Yeah, for me as an outsider it's a bit hard to make sense of all the branches and follow what has been done and what is still to do. How...
Regarding the use of `unsafe` in this PR, do I understand correctly that this is safe because the worker runtime will always execute a worker on a single thread?
HI @xioTechnologies, are you interested in a PR that adds Rust bindings? I gave it a try and it turned out to be quite easy.
Why is that? You can find the code in my fork here: https://github.com/avsaase/Fusion/tree/rust-bindings
Note that the bindings are currently not tested and could break in potentially subtle ways when the the C library changes. I'll set up a separate repo and continue the...