hello, I would like to know if there any plan to create a spine runtime for rust, I know there is few crate that used ffi with the c runtime, but it just won't do it for me I know they work but hard to expand.
I am really thinking of creating a runtime for pure rust If there isn't a plan for it .
Rust Runtime
Currently, there are no plans to create an official Spine runtime for Rust. However, it is possible to bind the existing spine-c
runtime using tools like bindgen
to create bindings for Rust. If you are considering creating a runtime in pure Rust, you would need to ensure it is a clean room implementation, meaning you should not use any of the existing Spine Runtimes code to avoid licensing issues. This approach would allow you to apply your own license to the runtime.
thanks for the replay , I
i know bindgen can generate binding interface for the c runtime ,
but it feel like it taking out the control and power from your rust code (and possible optimisation and SIMD support)