diff options
author | Robbie Harwood <rharwood@redhat.com> | 2019-10-25 11:12:02 -0400 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2019-10-26 14:10:29 +0200 |
commit | 0ecf7c92f524c965de1fde9c0bc2f21b31c2ac67 (patch) | |
tree | 5907bdc4a15217cbd22c0b8193a5a2f9d97babf3 | |
parent | cb8266620596222b1cd9dbe6551cc1e3e8bb7f72 (diff) |
[book] Update most recent version of bindgen
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
-rw-r--r-- | book/src/tutorial-1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/tutorial-1.md b/book/src/tutorial-1.md index 8a10a86b..1a84bc22 100644 --- a/book/src/tutorial-1.md +++ b/book/src/tutorial-1.md @@ -4,12 +4,12 @@ First we need to declare a build-time dependency on `bindgen` by adding it to the `[build-dependencies]` section of our crate's `Cargo.toml` file. Please always use the latest version of `bindgen`, it has the most fixes and -best compatibility. At the time of writing the latest bindgen is `0.50.0`, but +best compatibility. At the time of writing the latest bindgen is `0.51.1`, but you can always check [the bindgen page of crates.io](https://crates.io/crates/bindgen) to verify the latest version if you're unsure. ```toml [build-dependencies] -bindgen = "0.50" +bindgen = "0.51.1" ``` |