Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | H | - | - | 4,906 | 2,608 | |
tests/ | H | - | - | 687 | 520 | |
.gitignore | H A D | 12-Dec-2024 | 65 | 3 | 2 | |
Cargo.toml | H A D | 07-May-2025 | 516 | 27 | 22 | |
README.md | H A D | 12-Dec-2024 | 401 | 20 | 13 | |
build.rs | H A D | 07-May-2025 | 1.4 KiB | 42 | 31 | |
meson.build | H A D | 04-Jun-2025 | 2 KiB | 79 | 72 |
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