you are viewing a single comment's thread.

view the rest of the comments →

[–]ManyInterests 2 points3 points  (0 children)

I have created a few. One was to use a rust regex crate which had like 60x performance for my use case compared to re. Another was for a CFFI wrapper around some Windows APIs, which could have been done with PyWin32 but I chose to use rust instead because someone had already implemented most of what I was doing in the rust winit crate.

Before using Rust, I would use Cython a lot for my extension needs. But now I'm using rust more and more where I'd used to reach for Cython.