From 1c6a179f9201fa08ade314477fd0a0dbf3f16517 Mon Sep 17 00:00:00 2001 From: Georgio Nicolas Date: Thu, 13 Jun 2019 19:39:03 +0300 Subject: [PATCH] Update bindgen version --- book/src/tutorial-1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/tutorial-1.md b/book/src/tutorial-1.md index e80821252f..3d5e751b31 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.49.0`, but +best compatibility. At the time of writing the latest bindgen is `0.49.2`, 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.49.0" +bindgen = "0.49.2" ```