Name Date Size #Lines LOC

..--

src/H--5,2072,796

tests/H--662502

.gitignoreH A D12-Dec-202465 32

Cargo.tomlH A D02-Mar-2025613 3126

README.mdH A D12-Dec-2024401 2013

build.rsH A D12-Dec-20241.6 KiB4935

meson.buildH A D23-Mar-20252.6 KiB8678

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