Name Date Size #Lines LOC

..--

src/H--4,9062,608

tests/H--687520

.gitignoreH A D12-Dec-202465 32

Cargo.tomlH A D07-May-2025516 2722

README.mdH A D12-Dec-2024401 2013

build.rsH A D07-May-20251.4 KiB4231

meson.buildH A D04-Jun-20252 KiB7972

README.md

1# QEMU bindings and API wrappers
2
3This library exports helper Rust types, Rust macros and C FFI bindings for internal QEMU APIs.
4
5The C bindings can be generated with `bindgen`, using this build target:
6
7```console
8$ make bindings.inc.rs
9```
10
11## Generate Rust documentation
12
13Common Cargo tasks can be performed from the QEMU build directory
14
15```console
16$ make clippy
17$ make rustfmt
18$ make rustdoc
19```
20