Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | Today | - | ||||
src/ | H | Today | - | 1,007 | 793 | |
tests/ | H | Today | - | 80 | 65 | |
.gitignore | H A D | Today | 60 | 3 | 2 | |
Cargo.toml | H A D | Today | 705 | 29 | 24 | |
README.md | H A D | Today | 386 | 18 | 11 | |
build.rs | H A D | Today | 695 | 24 | 14 | |
meson.build | H A D | Today | 1.4 KiB | 55 | 49 |
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