Name Date Size #Lines LOC

..--

src/H--1,007793

tests/H--8065

.gitignoreH A D11-Oct-202460 32

Cargo.tomlH A D06-Nov-2024705 2924

README.mdH A D11-Oct-2024386 1811

build.rsH A D06-Nov-2024695 2414

meson.buildH A D06-Nov-20241.4 KiB5549

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$ ninja bindings.rs
9```
10
11## Generate Rust documentation
12
13To generate docs for this crate, including private items:
14
15```sh
16cargo doc --no-deps --document-private-items
17```
18