Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 593 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 593 Bytes

iouring-rs

A Rust library for using Linux io_uring.

Work in progress.

Notes

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.