From 29fcaae0d0b624784647ac3a6719486ce34cab9e Mon Sep 17 00:00:00 2001 From: Jonathan Schwender Date: Fri, 16 Aug 2024 10:28:58 +0800 Subject: [PATCH] Add instruction how to install bindgen Signed-off-by: Jonathan Schwender --- Readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Readme.md b/Readme.md index 9e2accf..a466092 100644 --- a/Readme.md +++ b/Readme.md @@ -25,6 +25,8 @@ Please also check the following: - Be sure to guard the new component behind a cargo feature and document the feature in Cargo.toml. - If you did not generate the bindings with API-level 10, specify which API-level you generated the bindings with and guard the generated module behind the corresponding api-level feature flag. +- Installing `bindgen`: We use a version of bindgen that has not been released yet to crates.io. + You can install the latest version by running `cargo install --git https://github.com/rust-lang/rust-bindgen.git bindgen-cli --branch main --features prettyplease` ## License