Internships/ProjectIdeas/RustBindingsForLibNBD

From QEMU
Revision as of 14:52, 30 January 2023 by Rwmj (talk | contribs) (Created page with "=== Rust bindings for libnbd === '''Summary:''' Add Rust bindings for [https://gitlab.com/nbdkit/libnbd libnbd] [https://en.wikipedia.org/wiki/Network_block_device Network...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Rust bindings for libnbd

Summary: Add Rust bindings for libnbd

Network block device (NBD) is a protocol for exporting block devices (disk-like things) between processes, either across the network or between processes on the same machine. libnbd is a client library and some tools for talking to NBD servers. This library has bindings in various languages such as Python, but not in Rust, and the project is about writing those bindings.

Note that the bindings in libnbd are generated. You must use add Rust bindings to the generator so that they are updated automatically as the libnbd API evolves in future. Simply addng Rust bindings for the current API will not be enough to complete the project. The Rust bindings must also be of high quality and natural for Rust developers to use. Documentation and tests are also required.

Links:
* https://en.wikipedia.org/wiki/Network_block_device
* https://gitlab.com/nbdkit/libnbd
* C API
* Python API
* libnbd generator

Details:
* Skill level: intermediate or advanced
* Language: C, Rust, OCaml
* Mentor: rjones@redhat.com rwmjones on IRC
* Suggested by: Richard Jones