• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Apr-2025-

src/18-Apr-2025-

tests/18-Apr-2025-

.gitignore A D18-Apr-202560 32

Cargo.toml A D18-Apr-2025705 2924

README.md A D18-Apr-2025386 1811

build.rs A D18-Apr-2025695 2414

meson.build A D18-Apr-20251.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