Comment by LAC-Tech
2 days ago
That's what liburing_rs[1] is doing.
I am foolishly trying to make pure rust bindings myself [2].
[1] https://docs.rs/axboe-liburing/
But yeah the liburing test suite is massive, way more than anyone else has.
2 days ago
That's what liburing_rs[1] is doing.
I am foolishly trying to make pure rust bindings myself [2].
[1] https://docs.rs/axboe-liburing/
But yeah the liburing test suite is massive, way more than anyone else has.
Pretty nice library! Personally, I think having a language-native library is great. The only downside is that it becomes a long-term commitment if it needs to stay in sync with the development of io_uring. I wonder whether it would be a good idea to provide C bindings from the language-specific library, so it can be more easily integrated and tested into the liburing test suite with minimal effort.
woah that reverse uno of making C bindings from my rust bindings so I can piggy back on the awesome liburing tests is really clever :) thanks for that.