Rust - Rack Interop

Has there been any work by the community on enabling Rust language plugins? I’ve written a bit of DSP code in Rust and I could easily compile it to a staticlib that can be linked into the plugin shared object, but it would be fun to build plugins in Rust itself.

2 Likes

You can compile Rust code that exposes a C interface and call that interface from C++.

2 Likes