summary refs log tree commit diff stats
path: root/rust/qemu-api/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'rust/qemu-api/README.md')
-rw-r--r--rust/qemu-api/README.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/rust/qemu-api/README.md b/rust/qemu-api/README.md
index 7588fa29ef..ed1b7ab263 100644
--- a/rust/qemu-api/README.md
+++ b/rust/qemu-api/README.md
@@ -5,13 +5,15 @@ This library exports helper Rust types, Rust macros and C FFI bindings for inter
 The C bindings can be generated with `bindgen`, using this build target:
 
 ```console
-$ ninja bindings.rs
+$ make bindings.inc.rs
 ```
 
 ## Generate Rust documentation
 
-To generate docs for this crate, including private items:
+Common Cargo tasks can be performed from the QEMU build directory
 
-```sh
-cargo doc --no-deps --document-private-items
+```console
+$ make clippy
+$ make rustfmt
+$ make rustdoc
 ```