A Rust library for using Linux io_uring.
Work in progress.
This implementation operates directly on the kernel ABI, while trying to follow
the liburing implementation. The goal is to
understand the io_uring
facility and how to write low-level code with Rust.
Implementing bidings to liburing
is probably a better choice in the long run
(e.g., https://github.com/withoutboats/iou). There seems to be at least one
more Rust implementation that
operates directly on the kernel ABI.