alexslade
Is there a supported way to compile + cache a rust dependency?
Hi folks,
On of my team’s projects has a rust dependency, via a library that uses rustler to wrap a rust function. It hasn’t changed in a while, and it’s a pain to have an entire rust runtime dependency for this single lib.
We’re trying to find a way to remove the runtime from our deploy pipeline, and I’m wondering if there is a way to locally compile the dependency ahead of time and just include some kind of version-fixed binary.
Grateful for any suggestions, thanks.
Most Liked
josevalim
We are working on a package for precompiling Rustler. It should be available within the next two weeks or so. 
josevalim
Here is the library, very alpha version, likely some rough edges and changes incoming, but if you can’t wait you can already give it a try: GitHub - philss/rustler_precompiled: Use precompiled NIFs from trusted sources in your Elixir code
josevalim
There is a proof of concept in the html5ever project that is being ported to a stand-alone library.
OvermindDL1
What I would find really fascinating is embedding a wasm engine, like wasmer or so, and expose the BEAM API to it (perhaps with a bit of massaging), and then you could easily compile native apps to WASM and load them in that instead. Something like wasmer could run it either fully interpreted, cranelift JIT compiled, or even LLVM native compiled for near native speed, without needing to compile it for each individual platform and beam bindings needed, especially if a more version independent API were exposed to it… This is an interesting idea… You’d probably want to precompile the wasm engine library for NIF access for each combination of beam VM and arch but that’s only one thing you’d need to do instead of every single possible library… Hmm…
Standalone process communicated via Ports or something similar is doable as well and honestly probably fine for many libraries, but most things made for NIF’s are because they want that speed, and WASM could probably get that close enough (at the very least for dev)…
sorentwo
If anybody else is curious, here is the package: GitHub - rusterlium/html5ever_elixir: NIF wrapper of html5ever using Rustler







