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
We're currently generating Python bindings to some old-ass C code using a program called swig. That's bad, as swig seems to be unmaintained.
Solution
Instead of making bindings to the code with Python, we can do so with Rust's bindgen tool. It'll be more consistent, easier to work with, and consistent across platforms.
We also gain the ability to test the library using Cargo's integrated testing system.
The text was updated successfully, but these errors were encountered: